From b0c5053c99fb623ef4356a15340934b6803ba8d2 Mon Sep 17 00:00:00 2001 From: Infi Date: Sun, 13 Oct 2024 13:44:02 +0200 Subject: [PATCH] chore: make default value for embedAppleMusic = false until works well Signed-off-by: Infi --- app/src/main/java/chat/revolt/api/schemas/Settings.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/chat/revolt/api/schemas/Settings.kt b/app/src/main/java/chat/revolt/api/schemas/Settings.kt index 4b18921a..a4a46d00 100644 --- a/app/src/main/java/chat/revolt/api/schemas/Settings.kt +++ b/app/src/main/java/chat/revolt/api/schemas/Settings.kt @@ -19,7 +19,7 @@ data class AndroidSpecificSettingsSpecialEmbedSettings( * Whether to embed Apple Music albums and tracks interactively. * Boolean. */ - val embedAppleMusic: Boolean = true + val embedAppleMusic: Boolean = false ) @Serializable