Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTQMatvey <77576395+TQMatvey@users.noreply.github.com>2022-07-28 12:48:45 +0300
committerGitHub <noreply@github.com>2022-07-28 12:48:45 +0300
commitb6e52e979d07dbd17de80614df6fa224fcb9af33 (patch)
tree6654b52c6f4c6f970f97a208ab980d58da930a26
parentc7772060657afc8ee5a160ea3ed62246d989c136 (diff)
Infrared.c: Dont Close GUI 2 times (#1477)
GUI was being closed 2 times upon exit, this PR fixes that by removing 1 of those cases
-rw-r--r--applications/infrared/infrared.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/applications/infrared/infrared.c b/applications/infrared/infrared.c
index f211f006..4b7a4671 100644
--- a/applications/infrared/infrared.c
+++ b/applications/infrared/infrared.c
@@ -242,9 +242,6 @@ static void infrared_free(Infrared* infrared) {
infrared_remote_free(infrared->remote);
infrared_worker_free(infrared->worker);
- furi_record_close(RECORD_GUI);
- infrared->gui = NULL;
-
furi_record_close(RECORD_NOTIFICATION);
infrared->notifications = NULL;