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

Commit a997cf44 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Prevent Caching the Invalid Resource"

parents 2d9637c6 138b89d6
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2465,7 +2465,10 @@ public class SubscriptionManager {
        if (subInfo != null) {
            overrideConfig.mcc = subInfo.getMcc();
            overrideConfig.mnc = subInfo.getMnc();
            if (overrideConfig.mnc == 0) overrideConfig.mnc = Configuration.MNC_ZERO;
            if (overrideConfig.mnc == 0) {
                overrideConfig.mnc = Configuration.MNC_ZERO;
                cacheKey = null;
            }
        }

        if (useRootLocale) {