Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 06e534a3 authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Don't crash trying to stop program list updates on already closed tuner

Bug: 130816005
Test: build and run
Change-Id: Ibb0af40165c6b330785ef208510ba654c5ee6ad7
(cherry picked from commit 136870f7)
parent 22331640
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -271,6 +271,8 @@ class TunerAdapter extends RadioTuner {
            mCallback.setProgramListObserver(list, () -> {
                try {
                    mTuner.stopProgramListUpdates();
                } catch (IllegalStateException ex) {
                    // it's fine to not stop updates if tuner is already closed
                } catch (RemoteException ex) {
                    Log.e(TAG, "Couldn't stop program list updates", ex);
                }