From ca71eaf328448c7116d4484ac3453a571e0f9c39 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Tue, 2 May 2023 12:44:02 +0100 Subject: [PATCH] Fix favorite timeout with nfc --- applications/main/archive/helpers/favorite_timeout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/main/archive/helpers/favorite_timeout.c b/applications/main/archive/helpers/favorite_timeout.c index b46057d82..7643ebfc8 100644 --- a/applications/main/archive/helpers/favorite_timeout.c +++ b/applications/main/archive/helpers/favorite_timeout.c @@ -11,7 +11,7 @@ bool process_favorite_launch(char** args) { void favorite_timeout_callback(void* _ctx) { FavoriteTImeoutCtx* ctx = _ctx; - while(scene_manager_handle_back_event(ctx->scene_manager)) + while(scene_manager_previous_scene(ctx->scene_manager)) ; view_dispatcher_stop(ctx->view_dispatcher); }