From d2cc9a4fc83def954c55b9444bccabe5a03a5a35 Mon Sep 17 00:00:00 2001 From: Manuel Schmid Date: Sun, 19 Nov 2023 23:30:18 +0100 Subject: [PATCH] reset last_stop when skipping for further processing --- modules/async_worker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/async_worker.py b/modules/async_worker.py index e6cc8a49..deaafa5a 100644 --- a/modules/async_worker.py +++ b/modules/async_worker.py @@ -729,6 +729,7 @@ def worker(): except fcbh.model_management.InterruptProcessingException as e: if async_task.last_stop == 'skip': print('User skipped') + async_task.last_stop = False continue else: print('User stopped')