From b6e52e979d07dbd17de80614df6fa224fcb9af33 Mon Sep 17 00:00:00 2001 From: TQMatvey <77576395+TQMatvey@users.noreply.github.com> Date: Thu, 28 Jul 2022 16:48:45 +0700 Subject: [PATCH] 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 --- applications/infrared/infrared.c | 3 --- 1 file changed, 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;