From 4fa6873180a1b6fd76440f51de690c71d86ba317 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 2 Feb 2023 14:29:39 -0500 Subject: [PATCH] Forcing Notifications with Direct citations only removes too much. --- .../amethyst/service/NostrNotificationDataSource.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/service/NostrNotificationDataSource.kt b/app/src/main/java/com/vitorpamplona/amethyst/service/NostrNotificationDataSource.kt index ed5440d8f..d3f64562e 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/service/NostrNotificationDataSource.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/service/NostrNotificationDataSource.kt @@ -28,7 +28,6 @@ object NostrNotificationDataSource: NostrDataSource("NotificationFeed") { return filtered.filter { it.event !is ChannelCreateEvent && it.event !is ChannelMetadataEvent - && it.directlyCites(account.userProfile()) }.sortedBy { it.event?.createdAt }.reversed() }