Test out a more prominent version of the new notification sound. (#4667)

This commit is contained in:
Doug
2025-10-28 16:52:23 +00:00
committed by GitHub
parent fe74083ce4
commit ad64315e3c
3 changed files with 5 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ struct NotificationContentBuilder {
notificationContent.threadIdentifier = threadIdentifier.replacingOccurrences(of: "@", with: "")
MXLog.info("isNoisy: \(notificationItem.isNoisy)")
notificationContent.sound = notificationItem.isNoisy ? UNNotificationSound(named: UNNotificationSoundName(rawValue: "message.caf")) : nil
notificationContent.sound = notificationItem.isNoisy ? UNNotificationSound(named: UNNotificationSoundName(rawValue: AppSettings.isDevelopmentBuild ? "new-message.caf" : "message.caf")) : nil
switch notificationItem.event {
case .none: