From 2a7b730378a0c9d7c3dfbc47e9862169a149d347 Mon Sep 17 00:00:00 2001 From: Robert Greenwalt Date: Mon, 12 Apr 2010 14:56:31 -0700 Subject: [PATCH] Fix Throttle Notification intents Now goes to the correct settings page. bug:2576057 Change-Id: I21df0e53f7f56ae9bf71f983a3aed200c5ac217d --- services/java/com/android/server/ThrottleService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/java/com/android/server/ThrottleService.java b/services/java/com/android/server/ThrottleService.java index 9d4e2263b902a..08b003d10470f 100644 --- a/services/java/com/android/server/ThrottleService.java +++ b/services/java/com/android/server/ThrottleService.java @@ -463,7 +463,7 @@ public class ThrottleService extends IThrottleManager.Stub { private void postNotification(int titleInt, int messageInt, int icon, int flags) { Intent intent = new Intent(); // TODO - fix up intent - intent.setClassName("com.android.settings", "com.android.settings.TetherSettings"); + intent.setClassName("com.android.phone", "com.android.phone.DataUsage"); intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); PendingIntent pi = PendingIntent.getActivity(mContext, 0, intent, 0);