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

Unverified Commit 5d075c56 authored by Chih-Wei Huang's avatar Chih-Wei Huang Committed by Adrian DC
Browse files

Fix null pointer crashing

RM-290

Change-Id: Ie55d1c37c05b334398b713db17353885a9125e3a
parent be40ea1d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -781,7 +781,7 @@ public class MovieActivity extends Activity {
            Log.v(TAG, "setActionBarTitle(" + title + ")");
        }
        ActionBar actionBar = getActionBar();
        if (title != null) {
        if (actionBar != null && title != null) {
            actionBar.setTitle(title);
        }
    }