diff --git a/app/screens/settings/notification_settings_mobile/notification_settings_mobile.android.js b/app/screens/settings/notification_settings_mobile/notification_settings_mobile.android.js index 02004b537..946df2bd7 100644 --- a/app/screens/settings/notification_settings_mobile/notification_settings_mobile.android.js +++ b/app/screens/settings/notification_settings_mobile/notification_settings_mobile.android.js @@ -586,7 +586,7 @@ class NotificationSettingsMobileAndroid extends NotificationSettingsMobileBase { } else { selectedUri = this.sound; const selected = sounds.find((s) => s.uri === selectedUri); - sound = selected.name; + sound = selected ? selected.name : 'none'; } NotificationPreferences.setNotificationSound(selectedUri);