This error seemed to occur on compositeDisposable.clear() so null checked there (#4525)

This commit is contained in:
neslihanturan 2021-07-26 08:17:34 +03:00 committed by GitHub
parent 2a9ae73750
commit ee81877ebb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,9 @@ class ContributionBoundaryCallback @Inject constructor(
} }
) )
}else { }else {
compositeDisposable.clear() if (compositeDisposable != null){
compositeDisposable.clear()
}
} }
} }