diff --git a/src/client/chat.js b/src/client/chat.js index 3332376..f01e248 100644 --- a/src/client/chat.js +++ b/src/client/chat.js @@ -490,7 +490,7 @@ class LastSeenMessages extends Array { pending = 0 push (e) { - if (!e) return false // We do not acknowledge unsigned messages + if (!e || !e.signature) return false // We do not acknowledge unsigned messages // Insert a new entry at the top and shift everything to the right let last = this[0]