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

Commit d0257a59 authored by Daniel Rosenberg's avatar Daniel Rosenberg Committed by android-build-merger
Browse files

Merge "Fix misplaced return in RescueParty" into qt-dev am: a47236b5

am: 3a4b805d

Change-Id: Iaef6baa943cd8a7ee9aceb92f52a340cf834234c
parents 4b9ff15e 3a4b805d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -866,8 +866,8 @@ public class RecoverySystem {
            if (storageManager.needsCheckpoint()) {
            if (storageManager.needsCheckpoint()) {
                Log.i(TAG, "Rescue Party requested wipe. Aborting update instead.");
                Log.i(TAG, "Rescue Party requested wipe. Aborting update instead.");
                storageManager.abortChanges("rescueparty", false);
                storageManager.abortChanges("rescueparty", false);
            }
                return;
                return;
            }
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            Log.i(TAG, "Failed to handle with checkpointing. Continuing with wipe.");
            Log.i(TAG, "Failed to handle with checkpointing. Continuing with wipe.");
        }
        }