change the default reminder audio stream from Alarm to Notification

This commit is contained in:
tibbi 2022-05-22 12:10:03 +02:00
parent 79f545413e
commit db1e20e296
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ class Config(context: Context) : BaseConfig(context) {
set(lastUsedLocalEventTypeId) = prefs.edit().putLong(LAST_USED_LOCAL_EVENT_TYPE_ID, lastUsedLocalEventTypeId).apply()
var reminderAudioStream: Int
get() = prefs.getInt(REMINDER_AUDIO_STREAM, AudioManager.STREAM_ALARM)
get() = prefs.getInt(REMINDER_AUDIO_STREAM, AudioManager.STREAM_NOTIFICATION)
set(reminderAudioStream) = prefs.edit().putInt(REMINDER_AUDIO_STREAM, reminderAudioStream).apply()
var replaceDescription: Boolean