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

Commit de4f0f53 authored by Yorke Lee's avatar Yorke Lee
Browse files

Fix potential NPE in VoicemailPlaybackPresenter

Bug: 26092525
Change-Id: Id3e54a197ed8bfb51b9b01bbc98a4ee81b28d9ee
parent b0f9d35d
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());
                }