Fixes a bug of not loading some notification message kinds

This commit is contained in:
Vitor Pamplona
2025-10-06 19:15:48 -04:00
parent 0ab7dd9797
commit 0045426840
@@ -55,12 +55,12 @@ class AccountNotificationsEoseFromInboxRelaysManager(
relay = it,
pubkey = user(key).pubkeyHex,
since = since?.get(it)?.time ?: TimeUtils.oneWeekAgo(),
)
filterNotificationsToPubkey(
relay = it,
pubkey = user(key).pubkeyHex,
since = since?.get(it)?.time ?: key.feedContentStates.notifications.lastNoteCreatedAtIfFilled() ?: TimeUtils.oneWeekAgo(),
)
) +
filterNotificationsToPubkey(
relay = it,
pubkey = user(key).pubkeyHex,
since = since?.get(it)?.time ?: key.feedContentStates.notifications.lastNoteCreatedAtIfFilled() ?: TimeUtils.oneWeekAgo(),
)
}
val userJobMap = mutableMapOf<User, List<Job>>()