Fixed update check

This commit is contained in:
Your Name 2025-05-02 00:19:38 +01:00
parent c4da55a4f9
commit e17956f03f

View file

@ -223,7 +223,6 @@ class WorkerThread(QThread):
def sync(self):
try:
print('inside syns workertheard')
if self.action == 'SYNC_TOR':
ConfigurationController.set_connection('tor')
else:
@ -233,7 +232,6 @@ class WorkerThread(QThread):
all_location_codes = [f"{location.country_code}_{location.code}" for location in locations]
self.sync_output.emit(all_location_codes, True, False, locations, False)
except Exception as e:
print(e)
self.sync_output.emit([], False, False, [], False)
@ -1060,7 +1058,6 @@ class Worker(QObject):
self.force = self.profile_data.get('force', False)
def run(self):
print('inside enable worker thread')
self.profile = ProfileController.get(int(self.profile_data['id']))
if 'billing_code' in self.profile_data: