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

Commit b87708e6 authored by William Escande's avatar William Escande Committed by Automerger Merge Worker
Browse files

Merge "OppTransfer Add null check for mTransferCursor." into main am: 4ec04021 am: 8ebd1dea

parents e1cb4cb2 8ebd1dea
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -270,6 +270,9 @@ public class BluetoothOppTransferHistory extends Activity

    /** Returns true if the device has finished transfers, including error and success. */
    private boolean isTransferComplete() {
        if (mTransferCursor == null) {
            return false;
        }
        try {
            if (mTransferCursor.moveToFirst()) {
                while (!mTransferCursor.isAfterLast()) {