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

Commit 790068a1 authored by Jason Monk's avatar Jason Monk Committed by Android Git Automerger
Browse files

am 99b33ccb: Merge "Fix crash in PacManager" into lmp-dev

* commit '99b33ccbbf0d0c2d6c75babccee1def614f93008':
  Fix crash in PacManager
parents 9af20470 f6edc55e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ public class PacManager {
    public static final String KEY_PROXY = "keyProxy";
    private String mCurrentPac;
    @GuardedBy("mProxyLock")
    private Uri mPacUrl;
    private Uri mPacUrl = Uri.EMPTY;

    private AlarmManager mAlarmManager;
    @GuardedBy("mProxyLock")
@@ -175,7 +175,7 @@ public class PacManager {
        } else {
            getAlarmManager().cancel(mPacRefreshIntent);
            synchronized (mProxyLock) {
                mPacUrl = null;
                mPacUrl = Uri.EMPTY;
                mCurrentPac = null;
                if (mProxyService != null) {
                    try {