diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-09-19 15:45:03 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-09-19 15:45:23 +0200 |
commit | 4b36585e4798a24bfcb57fd7cef71e72dff1c0ea (patch) | |
tree | d547ce41f33a381a8d4531819f8c09235b38f017 /src | |
parent | Translated using Weblate (German) (diff) | |
download | nheko-4b36585e4798a24bfcb57fd7cef71e72dff1c0ea.tar.xz |
Fix typo in encryption error message
Diffstat (limited to 'src')
-rw-r--r-- | src/timeline/EventStore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline/EventStore.cpp b/src/timeline/EventStore.cpp index 20487b28..749d4092 100644 --- a/src/timeline/EventStore.cpp +++ b/src/timeline/EventStore.cpp @@ -471,7 +471,7 @@ EventStore::decryptEvent(const IdIndex &idx, room_id_, index.sender_key); dummy.content.body = - tr("-- Reply attack! This message index was reused! --").toStdString(); + tr("-- Replay attack! This message index was reused! --").toStdString(); break; case olm::DecryptionErrorCode::UnknownFingerprint: // TODO: don't fail, just show in UI. |