BugFix for duplicated notes in the LocalCache

This commit is contained in:
Vitor Pamplona
2023-06-25 16:21:36 -04:00
parent ebe1bcedd0
commit 798be25c43
@@ -87,7 +87,6 @@ object LocalCache {
return notes.get(idHex) ?: run {
val newObject = Note(idHex)
notes.putIfAbsent(idHex, newObject) ?: newObject
newObject
}
}