cscarney / syndic

Convergent feed reader for Plasma and Android
12 stars 2 forks source link

Feed update should not complete until after all articles are added #238

Open cscarney opened 2 months ago

cscarney commented 2 months ago

There is currently a race condition in SqliteStorage between UpdaterImpl and the database worker. The updater spins off a bunch of database queries but doesn't wait for them to complete before marking the feed as idle. This causes problems elsewhere because we assume that articles are only added in the context of an active update.

Plan of Action:

This should hopefully fix #234