Skip to content
Snippets Groups Projects

Prevent Exception Replay When Unsubscribing From Deleted Channel

Merged Kai DeLorenzo requested to merge prevent-exception-replay into master
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
@@ -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;
})
Loading