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

Commit 5e36a6fc authored by wangqi's avatar wangqi Committed by android-build-merger
Browse files

Merge "Fix bug that two messengers app showing on sharing voicemail screen."

am: b6b92e66

Change-Id: I5d8db1afe6a097d83a9c341ca0ac646a31d7f2bc
parents 8cd95982 b6b92e66
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -962,7 +962,7 @@ public class VoicemailPlaybackPresenter
      shareIntent.putExtra(Intent.EXTRA_STREAM, voicemailFileUri);
      shareIntent.putExtra(Intent.EXTRA_TEXT, transcription);
      shareIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
      shareIntent.setType("*/*");
      shareIntent.setType(context.getContentResolver().getType(voicemailFileUri));
    }

    return shareIntent;