From 01dd67b1ad9ecde5c88554c451deba3f9f2d58a5 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 26 Mar 2025 16:13:26 +0100 Subject: [PATCH] Use int --- changedetectionio/update_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/update_worker.py b/changedetectionio/update_worker.py index c92aef1d..38a8f73a 100644 --- a/changedetectionio/update_worker.py +++ b/changedetectionio/update_worker.py @@ -255,7 +255,7 @@ class update_worker(threading.Thread): else: uuid = queued_item_data.item.get('uuid') - fetch_start_time = time.time() # Also used for a unique history key for now + fetch_start_time = round(time.time()) # Also used for a unique history key for now self.current_uuid = uuid if uuid in list(self.datastore.data['watching'].keys()) and self.datastore.data['watching'][uuid].get('url'): changed_detected = False