summaryrefslogtreecommitdiffstats
path: root/java/com/android/voicemail/impl/sync/VoicemailProviderChangeReceiver.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/voicemail/impl/sync/VoicemailProviderChangeReceiver.java')
-rw-r--r--java/com/android/voicemail/impl/sync/VoicemailProviderChangeReceiver.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/java/com/android/voicemail/impl/sync/VoicemailProviderChangeReceiver.java b/java/com/android/voicemail/impl/sync/VoicemailProviderChangeReceiver.java
index eaca3c44b..7fde1febf 100644
--- a/java/com/android/voicemail/impl/sync/VoicemailProviderChangeReceiver.java
+++ b/java/com/android/voicemail/impl/sync/VoicemailProviderChangeReceiver.java
@@ -20,6 +20,7 @@ import android.content.Context;
import android.content.Intent;
import android.provider.VoicemailContract;
import android.telecom.PhoneAccountHandle;
+import com.android.voicemail.VoicemailComponent;
import com.android.voicemail.impl.settings.VisualVoicemailSettingsUtil;
/** Receives changes to the voicemail provider so they can be sent to the voicemail server. */
@@ -27,6 +28,9 @@ public class VoicemailProviderChangeReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
+ if (!VoicemailComponent.get(context).getVoicemailClient().isVoicemailModuleEnabled()) {
+ return;
+ }
boolean isSelfChanged = intent.getBooleanExtra(VoicemailContract.EXTRA_SELF_CHANGE, false);
if (!isSelfChanged) {
for (PhoneAccountHandle phoneAccount : VvmAccountManager.getActiveAccounts(context)) {