From 2e47af7b63cf80c8a4358d029a7356a6154fe497 Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Sat, 14 Dec 2024 09:15:06 +1100 Subject: [PATCH] sync plugin fix - remove devStatus --- front/plugins/sync/sync.py | 1 + 1 file changed, 1 insertion(+) diff --git a/front/plugins/sync/sync.py b/front/plugins/sync/sync.py index 13504ccb..62ab6247 100755 --- a/front/plugins/sync/sync.py +++ b/front/plugins/sync/sync.py @@ -228,6 +228,7 @@ def main(): # Remove 'rowid' key if it exists for device in new_devices: device.pop('rowid', None) + device.pop('devStatus', None) mylog('verbose', [f'[{pluginName}] All devices: "{len(device_data)}"']) mylog('verbose', [f'[{pluginName}] New devices: "{len(new_devices)}"'])