diff options
| author | 2010-12-06 16:51:32 -0800 | |
|---|---|---|
| committer | 2010-12-06 16:51:32 -0800 | |
| commit | 6dcc906c4518d52321fd3ea2d3b8f345844ba78c (patch) | |
| tree | 8d8c1baac0801cc42d5f3fa4fbe58c86af2e141f | |
| parent | e01af4dea3741e3e63be35abb227a795da909324 (diff) | |
| parent | a2e13392412d5094e49ea0053599477401d1a67e (diff) | |
Merge "Make Proxy change broadcast sticky"
| -rw-r--r-- | services/java/com/android/server/ConnectivityService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/ConnectivityService.java b/services/java/com/android/server/ConnectivityService.java index 43c857a1f490..f1fce3e69b3c 100644 --- a/services/java/com/android/server/ConnectivityService.java +++ b/services/java/com/android/server/ConnectivityService.java @@ -2163,7 +2163,7 @@ public class ConnectivityService extends IConnectivityManager.Stub { Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION); intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING); intent.putExtra(Proxy.EXTRA_PROXY_INFO, proxy); - mContext.sendBroadcast(intent); + mContext.sendStickyBroadcast(intent); } private static class SettingsObserver extends ContentObserver { |