Merge "Make sure the PAC script content is sent again"
This commit is contained in:
@@ -345,7 +345,14 @@ public class PacProxyService extends IPacProxyManager.Stub {
|
|||||||
if (mProxyService == null) {
|
if (mProxyService == null) {
|
||||||
Log.e(TAG, "No proxy service");
|
Log.e(TAG, "No proxy service");
|
||||||
} else {
|
} else {
|
||||||
mNetThreadHandler.post(mPacDownloader);
|
// If mCurrentPac is not null, then the PacService might have
|
||||||
|
// crashed and restarted. The download task will not actually
|
||||||
|
// call setCurrentProxyScript, so call setCurrentProxyScript here.
|
||||||
|
if (mCurrentPac != null) {
|
||||||
|
setCurrentProxyScript(mCurrentPac);
|
||||||
|
} else {
|
||||||
|
mNetThreadHandler.post(mPacDownloader);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user