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

Commit 4da02392 authored by Kenny Root's avatar Kenny Root
Browse files

Being already unmounted is not a failure

Change-Id: I5943096444e3d4d4cc5fd63f64a09c32f649a227
parent 735de3b3
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2062,6 +2062,9 @@ class MountService extends IMountService.Stub
                    int code = e.getCode();
                    if (code == VoldResponseCode.OpFailedStorageBusy) {
                        rc = StorageResultCode.OperationFailedStorageBusy;
                    } else if (code == VoldResponseCode.OpFailedStorageNotFound) {
                        // If it's not mounted then we've already won.
                        rc = StorageResultCode.OperationSucceeded;
                    } else {
                        rc = StorageResultCode.OperationFailedInternalError;
                    }