Attemp to take sound URI

This commit is contained in:
M66B 2022-06-06 17:34:22 +02:00
parent 21df2e4885
commit 2d3bf83cb4
2 changed files with 14 additions and 4 deletions

View File

@ -730,9 +730,14 @@ public class FragmentOptionsNotifications extends FragmentBase implements Shared
if (uri == null) // silent sound
prefs.edit().putString("sound", "").apply();
else {
if ("content".equals(uri.getScheme()))
if ("content".equals(uri.getScheme())) {
try {
getContext().getContentResolver().takePersistableUriPermission(uri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
} catch (Throwable ex) {
Log.w(ex);
}
prefs.edit().putString("sound", uri.toString()).apply();
else
} else
prefs.edit().remove("sound").apply();
}
}

View File

@ -740,9 +740,14 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
if (uri == null) // no/silent sound
prefs.edit().remove("sound_sent").apply();
else {
if ("content".equals(uri.getScheme()))
if ("content".equals(uri.getScheme())) {
try {
getContext().getContentResolver().takePersistableUriPermission(uri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
} catch (Throwable ex) {
Log.w(ex);
}
prefs.edit().putString("sound_sent", uri.toString()).apply();
else
} else
prefs.edit().remove("sound_sent").apply();
}
}