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

Commit c71244a0 authored by ShevT's avatar ShevT Committed by Timi Rautamäki
Browse files

Dialer: Move Call Recordings from Music to Recordings folder

 Recorded calls do not have a place in the Music folder.
 For this there is a folder "Recordings"

Change-Id: If4bacdf955cbbb1e55c7b0db6eb71144edcdb6f1
parent 1c251841
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ public final class CallRecording implements Parcelable {
  public static ContentValues generateMediaInsertValues(String fileName, long creationTime) {
    final ContentValues cv = new ContentValues(5);

    cv.put(MediaStore.Audio.Media.RELATIVE_PATH, "Music/Call Recordings");
    cv.put(MediaStore.Audio.Media.RELATIVE_PATH, "Recordings/Call recordings");
    cv.put(MediaStore.Audio.Media.DISPLAY_NAME, fileName);
    cv.put(MediaStore.Audio.Media.DATE_TAKEN, creationTime);
    cv.put(MediaStore.Audio.Media.IS_PENDING, 1);