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

Commit 50a7bb7d 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

am: f4709ad5

Change-Id: I5bde1de3f9d069c98f5c375c06befbae77be5783
parents 3fa86a68 f4709ad5
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,