Don't check the time.

This commit is contained in:
Kgothatso Ngako
2026-03-31 21:42:59 +02:00
parent 3d60b10216
commit 16b278556c

View File

@@ -299,8 +299,6 @@ class DatabaseNostrRepository(
}
override suspend fun observeNostrFeed(): Flow<List<LocalNostrEvent>> {
val thirtySecondsAgo = Clock.System.now().minus(30.seconds)
return database.nostrEventDao().observeNostrEvents(
kinds = arrayOf(
TextNoteEvent.KIND,
@@ -310,4 +308,4 @@ class DatabaseNostrRepository(
)
}
}
}