Removes the hack to reduce memory usage by deleting the .content when saving the event to cache.

This commit is contained in:
Vitor Pamplona
2025-04-25 17:04:16 -04:00
parent 539d20b397
commit 92eff02f0a
@@ -1777,7 +1777,7 @@ object LocalCache : ILocalCache {
// Already processed this event.
if (note.event != null) return
note.loadEvent(event.copyNoContent(), author, emptyList())
note.loadEvent(event, author, emptyList())
refreshObservers(note)
}
@@ -1797,7 +1797,7 @@ object LocalCache : ILocalCache {
// Already processed this event.
if (note.event != null) return
note.loadEvent(event.copyNoContent(), author, emptyList())
note.loadEvent(event, author, emptyList())
refreshObservers(note)
}