Fixes the bug of unable to decrypt mute lists.

This commit is contained in:
Vitor Pamplona
2024-10-19 14:17:17 -04:00
parent 7b11d0ce81
commit aae2ffebd7
3 changed files with 29 additions and 4 deletions
@@ -154,8 +154,9 @@ class EventNotificationConsumer(
acc: AccountSettings,
) {
if (
event.createdAt > TimeUtils.fifteenMinutesAgo() &&
// old event being re-broadcasted
event.createdAt > TimeUtils.fifteenMinutesAgo() &&
// don't display if it comes from me.
event.pubKey != signer.pubKey
) { // from the user
Log.d(TAG, "Notifying")