From 71d77c5cf858c2326f5aadc14c22b0f243d22c33 Mon Sep 17 00:00:00 2001 From: Jonathan Cremin Date: Tue, 20 May 2025 14:04:45 +0100 Subject: [PATCH] I think removing google broke things --- worker.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/worker.js b/worker.js index 5e4d493..44c3b81 100644 --- a/worker.js +++ b/worker.js @@ -20,6 +20,9 @@ const queue = kue.createQueue({ function search(data, done) { const share = data.share; const service = services.find(item => data.service.id === item.id); + if (service) { + return; + } debug(`Searching on: ${service.id}`); co(function* gen() { // eslint-disable-line no-loop-func