Clear feed loading exceptions to prevent replay of exceptions

Changelog: changed
This commit is contained in:
Kai 2025-01-08 21:54:03 -06:00
parent 891d3cf966
commit 084bac00f5
No known key found for this signature in database

View file

@ -204,8 +204,10 @@ class SubscriptionsFeedFragment : MainFragment() {
val feed = StateSubscriptions.instance.getFeed(group?.id);
val currentExs = feed?.exceptions ?: listOf();
if(currentExs != _lastExceptions && currentExs.any())
handleExceptions(currentExs);
if(currentExs != _lastExceptions && currentExs.any()) {
handleExceptions(currentExs)
feed?.exceptions = listOf()
}
return@TaskHandler resp;
})