poppingmoon / aria

A cross-platform Misskey client built with Flutter
https://misskey.io/@aria_app
GNU Affero General Public License v3.0
126 stars 4 forks source link

fix: check duplicate notes per timelines #418

Closed poppingmoon closed 2 days ago

poppingmoon commented 2 days ago

Removed check for the cached note inside TimelineStreamNotifier. This was intended to avoid duplicate notes for streaming, but since posting notes also caches them, this was causing the notes posted by the user not to appear in the timelines. The duplicate notes will now be checked during the TimelineNotesAfterNoteNotifier.addNote method.

Fix #336