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

Commit 34ed7da0 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents 4f60ea7b 42ad5dda
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,