Code cleanup

This commit is contained in:
Somethingweirdhere 2018-08-22 13:59:12 +02:00
parent f4416fe007
commit 4326354ca6
1 changed files with 3 additions and 4 deletions

View File

@ -392,11 +392,10 @@ public class SubscriptionFragment extends BaseStateFragment<List<SubscriptionEnt
@SuppressLint("CheckResult")
private void deleteChannel (ChannelInfoItem selectedItem) {
final io.reactivex.Observable<List<SubscriptionEntity>> observable = subscriptionService.subscriptionTable()
subscriptionService.subscriptionTable()
.getSubscription(selectedItem.getServiceId(), selectedItem.getUrl())
.toObservable();
observable.observeOn(Schedulers.io())
.toObservable()
.observeOn(Schedulers.io())
.subscribe(getDeleteObserver());
Toast.makeText(activity, getString(R.string.channel_unsubscribed), Toast.LENGTH_SHORT).show();