Skip to content
Snippets Groups Projects
Verified Commit 084bac00 authored by Kai DeLorenzo's avatar Kai DeLorenzo :purple_heart:
Browse files

Clear feed loading exceptions to prevent replay of exceptions

Changelog: changed
parent 891d3cf9
No related branches found
No related tags found
1 merge request!77Prevent Exception Replay When Unsubscribing From Deleted Channel
......@@ -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;
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment