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

Commit a3350903 authored by Kyunglyul Hyun's avatar Kyunglyul Hyun Committed by Gerrit Code Review
Browse files

Merge "Fix NPE" into main

parents f4995497 f8e9c6ad
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -152,9 +152,9 @@ public class BluetoothOppBtEnablingActivity extends AlertActivity {
            };

    private void cancelSendingProgress() {
        BluetoothOppManager mOppManager = BluetoothOppManager.getInstance(this);
        if (mOppManager.mSendingFlag) {
            mOppManager.mSendingFlag = false;
        BluetoothOppManager oppManager = BluetoothOppManager.getInstance(this);
        if (oppManager != null && oppManager.mSendingFlag) {
            oppManager.mSendingFlag = false;
        }
        finish();
    }