From b566abbd0402b55576a80b268375338f7121a4c0 Mon Sep 17 00:00:00 2001 From: Aitor Date: Fri, 24 Nov 2023 09:31:47 +0100 Subject: [PATCH] :bug: Fix unnecessary queue request process --- frontend/src/app/util/queue.cljs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/app/util/queue.cljs b/frontend/src/app/util/queue.cljs index d0d8545d1..9d3e02dbb 100644 --- a/frontend/src/app/util/queue.cljs +++ b/frontend/src/app/util/queue.cljs @@ -112,6 +112,4 @@ (when-not (.find ^js items f) (enqueue-first queue item)) (when-not (.findLast ^js items f) - (enqueue-last queue item))) - (when-not (has-requested-process? queue) - (request-process queue (next-process-time queue))))) + (enqueue-last queue item)))))