From 5d061a79e2fa583d70454e43e2891bf37b9d3b64 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Sun, 20 Aug 2023 10:29:35 -0400 Subject: [PATCH] Explanation on why the Global and All Follows code have spaces --- app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt b/app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt index d6e6e7193..36f032485 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt @@ -49,8 +49,8 @@ fun getLanguagesSpokenByUser(): Set { return codedList } -val GLOBAL_FOLLOWS = " Global " -val KIND3_FOLLOWS = " All Follows " +val GLOBAL_FOLLOWS = " Global " // This has spaces to avoid mixing with a potential NIP-51 list with the same name. +val KIND3_FOLLOWS = " All Follows " // This has spaces to avoid mixing with a potential NIP-51 list with the same name. @OptIn(DelicateCoroutinesApi::class) @Stable