mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 23:25:20 +03:00
Fix (some) ktlint issues
Signed-off-by: Dariusz Olszewski <starypatyk@users.noreply.github.com>
This commit is contained in:
parent
e9ac99c5df
commit
2e4130c2c4
1 changed files with 8 additions and 4 deletions
|
@ -235,15 +235,19 @@ object NotificationUtils {
|
|||
context: Context,
|
||||
appPreferences: AppPreferences?
|
||||
): Uri? {
|
||||
return getRingtoneUri(context,
|
||||
appPreferences!!.callRingtoneUri, DEFAULT_CALL_RINGTONE_URI, NOTIFICATION_CHANNEL_CALLS_V4)
|
||||
return getRingtoneUri(
|
||||
context,
|
||||
appPreferences!!.callRingtoneUri, DEFAULT_CALL_RINGTONE_URI, NOTIFICATION_CHANNEL_CALLS_V4
|
||||
)
|
||||
}
|
||||
|
||||
fun getMessageRingtoneUri(
|
||||
context: Context,
|
||||
appPreferences: AppPreferences?
|
||||
): Uri? {
|
||||
return getRingtoneUri(context,
|
||||
appPreferences!!.messageRingtoneUri, DEFAULT_MESSAGE_RINGTONE_URI, NOTIFICATION_CHANNEL_MESSAGES_V3)
|
||||
return getRingtoneUri(
|
||||
context,
|
||||
appPreferences!!.messageRingtoneUri, DEFAULT_MESSAGE_RINGTONE_URI, NOTIFICATION_CHANNEL_MESSAGES_V3
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue