mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-04-20 03:24:50 +00:00
Merge branch 'prevent-exception-replay' into 'master'
Prevent Exception Replay When Unsubscribing From Deleted Channel See merge request videostreaming/grayjay!77
This commit is contained in:
commit
e36047c890
1 changed files with 4 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue