Fixes blocked lists on Videos.

This commit is contained in:
Vitor Pamplona
2023-11-30 17:18:41 -05:00
parent e9ec1c45a0
commit efb9814f1b
5 changed files with 35 additions and 20 deletions
@@ -58,7 +58,10 @@ abstract class GeneralListEvent(
}
fun privateTags(signer: NostrSigner, onReady: (Array<Array<String>>) -> Unit) {
if (content.isBlank()) return
if (content.isEmpty()) {
onReady(emptyArray())
return
}
privateTagsCache?.let {
onReady(it)