Skip to content

Commit

Permalink
[lib] Fix long line in olmSessionErrors
Browse files Browse the repository at this point in the history
Summary: https://phab.comm.dev/D13901#388703

Test Plan: It's just a formatting change

Reviewers: kamil, ashoat

Reviewed By: ashoat

Subscribers: ashoat, tomek

Differential Revision: https://phab.comm.dev/D13924
  • Loading branch information
graszka22 committed Nov 13, 2024
1 parent f7cf29b commit 3e5fbff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/utils/olm-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ const olmSessionErrors = Object.freeze({
// the corresponding .cpp file
// at `native/cpp/CommonCpp/CryptoTools/CryptoModule.cpp`.
invalidSessionVersion: 'INVALID_SESSION_VERSION',
alreadyDecrypted: `${OLM_SESSION_ERROR_PREFIX}ALREADY_DECRYPTED_OR_KEYS_SKIPPED`,
alreadyDecrypted:
OLM_SESSION_ERROR_PREFIX + `ALREADY_DECRYPTED_OR_KEYS_SKIPPED`,
});

function hasHigherDeviceID(
Expand Down

0 comments on commit 3e5fbff

Please sign in to comment.