Эх сурвалжийг харах

Fix (some) ktlint issues

Signed-off-by: Dariusz Olszewski <starypatyk@users.noreply.github.com>
Dariusz Olszewski 3 жил өмнө
parent
commit
2e4130c2c4

+ 8 - 4
app/src/main/java/com/nextcloud/talk/utils/NotificationUtils.kt

@@ -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
+        )
     }
 }