From 94453d91003c38e7ebc946738056cbaefc414f2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=82=E3=81=8F?= Date: Mon, 19 Dec 2022 20:57:44 +0900 Subject: [PATCH] [FL-3046] Notification: fix recursive speaker acquire #2147 --- applications/services/notification/notification_app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/services/notification/notification_app.c b/applications/services/notification/notification_app.c index 4f6d42aa..b6579f54 100644 --- a/applications/services/notification/notification_app.c +++ b/applications/services/notification/notification_app.c @@ -150,7 +150,7 @@ void notification_vibro_off() { } void notification_sound_on(float freq, float volume) { - if(furi_hal_speaker_acquire(30)) { + if(furi_hal_speaker_is_mine() || furi_hal_speaker_acquire(30)) { furi_hal_speaker_start(freq, volume); } }