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

Commit 24c46229 authored by Yorke Lee's avatar Yorke Lee Committed by Nancy Chen
Browse files

[DO NOT MERGE] Fix potential NPE in VoicemailPlaybackPresenter

Bug: 26092525
Change-Id: I1f6673f698fabd5c6ccb62beee68a91170d0eff7
parent 52cd5fd6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -386,7 +386,7 @@ public class VoicemailPlaybackPresenter implements MediaPlayer.OnPreparedListene
            public void onPostExecute(Boolean hasContent) {
                if (hasContent) {
                    prepareContent();
                } else {
                } else if (mView != null) {
                    mView.resetSeekBar();
                    mView.setClipPosition(0, mDuration.get());
                }