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

Commit f4709ad5 authored by linyuh's avatar linyuh Committed by android-build-merger
Browse files

Merge "Don't allow reporting a inaccurate number for a voicemail call."

am: 34ed7da0

Change-Id: I9fbcb9f65e06082cb920fbdf179be77ff12493f7
parents dcbbf7e9 34ed7da0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -184,7 +184,8 @@ final class Modules {

  private static HistoryItemActionModule createModuleForAccessingCallDetails(
      Context context, CoalescedRow row) {
    boolean canReportAsInvalidNumber = row.getNumberAttributes().getCanReportAsInvalidNumber();
    boolean canReportAsInvalidNumber =
        !row.getIsVoicemailCall() && row.getNumberAttributes().getCanReportAsInvalidNumber();

    return new IntentModule(
        context,