Uses the indexing operator

pull/686/head
Vitor Pamplona 2023-11-07 16:31:36 -05:00
rodzic 92c72e5a7b
commit edd13fbe5b
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -121,7 +121,7 @@ object LocalCache {
fun getUserIfExists(key: String): User? {
if (key.isEmpty()) return null
return users.get(key)
return users[key]
}
fun getAddressableNoteIfExists(key: String): AddressableNote? {