Swaps .caf file for .mp3 for notification sound

.caf files don't appear to work on macOS notifications, and mp3s appear to work on both iOS and macOS, so swapped file format.
This commit is contained in:
Diggory Laycock
2022-10-05 18:21:33 +01:00
parent 92a5b10223
commit 1010d29be8
5 changed files with 10 additions and 6 deletions

View File

@@ -327,7 +327,7 @@ struct AppAssets {
static var notificationSoundBlipFileName: String = {
// https://freesound.org/people/cabled_mess/sounds/350862/
return "notificationSoundBlip.caf"
return "notificationSoundBlip.mp3"
}()
}