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

Commit a298d6fd authored by Suchi Amalapurapu's avatar Suchi Amalapurapu Committed by Android Git Automerger
Browse files

am a2a568e5: Merge "Fix error code when media is filled up." into froyo

Merge commit 'a2a568e5' into froyo-plus-aosp

* commit 'a2a568e5':
  Fix error code when media is filled up.
parents 986a0380 a2a568e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -416,7 +416,7 @@ public class DefaultContainerService extends IntentService {
                return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
            }
        }
        if (checkExt || checkBoth && !mediaAvailable) {
        if ((checkExt || checkBoth) && !mediaAvailable) {
            return PackageHelper.RECOMMEND_MEDIA_UNAVAILABLE;
        }
        return PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE;