mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-16 04:18:39 +00:00
fix #179
This commit is contained in:
parent
b5550cecd9
commit
eda23b1f03
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ Future<client.Response> handleNewMessage(int fromUserId, Uint8List body) async {
|
|||
MessageJson? message = await SignalHelper.getDecryptedText(fromUserId, body);
|
||||
if (message == null) {
|
||||
Logger("server_messages")
|
||||
.info("Got invalid cypher text from $fromUserId. Deleting it.");
|
||||
.info("Got invalid cipher text from $fromUserId. Deleting it.");
|
||||
// Message is not valid, so server can delete it
|
||||
var ok = client.Response_Ok()..none = true;
|
||||
return client.Response()..ok = ok;
|
||||
|
|
|
|||
Loading…
Reference in a new issue