Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0aac9909 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge changes I1587449f,I594a1667

* changes:
  Delete debugging logging statement in voicemail spam blocking
  Add permission for in-call visibility change
parents 3c733418 883a53e1
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -198,7 +198,6 @@ class VisualVoicemailUpdateTask implements Worker<VisualVoicemailUpdateTask.Inpu
  private static List<NewCall> filterSpamNumbers(Context context, List<NewCall> newCalls) {
    Assert.isWorkerThread();
    if (!SpamComponent.get(context).spamSettings().isSpamBlockingEnabled()) {
      LogUtil.w("VisualVoicemailUpdateTask.wwwwwwwwwwwww", "NOT ENABLED");
      return newCalls;
    }

@@ -214,7 +213,6 @@ class VisualVoicemailUpdateTask implements Worker<VisualVoicemailUpdateTask.Inpu
        Logger.get(context)
            .logImpression(DialerImpression.Type.INCOMING_VOICEMAIL_AUTO_BLOCKED_AS_SPAM);
      } else {
        LogUtil.w("VisualVoicemailUpdateTask.wwwwwwwwwwwww", "NOT SPAM NUMBER");
        result.add(newCall);
      }
    }
+2 −0
Original line number Diff line number Diff line
@@ -18,4 +18,6 @@
  <!-- This is used for querying Cequint caller id. -->
  <uses-permission android:name="com.cequint.ecid.CALLER_ID_LOOKUP"/>

  <!-- This is used by MotorolaInCallUiNotifier to send broadcasts. -->
  <uses-permission android:name="com.motorola.incallui.action.INCOMING_CALL_VISIBILITY_CHANGED"/>
</manifest>
 No newline at end of file