summaryrefslogtreecommitdiff
path: root/src/com/android/cellbroadcastreceiver/CellBroadcastBackupAgent.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/cellbroadcastreceiver/CellBroadcastBackupAgent.java')
-rw-r--r--src/com/android/cellbroadcastreceiver/CellBroadcastBackupAgent.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/cellbroadcastreceiver/CellBroadcastBackupAgent.java b/src/com/android/cellbroadcastreceiver/CellBroadcastBackupAgent.java
index 620276c83..185a86a52 100644
--- a/src/com/android/cellbroadcastreceiver/CellBroadcastBackupAgent.java
+++ b/src/com/android/cellbroadcastreceiver/CellBroadcastBackupAgent.java
@@ -48,7 +48,8 @@ public class CellBroadcastBackupAgent extends BackupAgentHelper
@Override
public void onRestoreFinished() {
Log.d(TAG, "Restore finished.");
- Intent intent = new Intent(CellBroadcastReceiver.CELLBROADCAST_START_CONFIG_ACTION);
+ Intent intent = new Intent(getApplicationContext(), CellBroadcastInternalReceiver.class);
+ intent.setAction(CellBroadcastReceiver.CELLBROADCAST_START_CONFIG_ACTION);
// Cell broadcast was configured during boot up before the shared preference is restored,
// we need to re-configure it.