From 390f1c8aebd7e248921b41d5a24dd64d8500adc9 Mon Sep 17 00:00:00 2001 From: rune Date: Mon, 6 May 2024 11:31:25 +0200 Subject: [PATCH] Work In Progress (WIP) --- malias.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malias.py b/malias.py index 869bc0f..99aede0 100644 --- a/malias.py +++ b/malias.py @@ -331,7 +331,7 @@ def checklist(alias): remoteData = json.loads(remote) i = 0 for search in remoteData: - if alias == remoteData[i]['address'] == alias in remoteData[i]['goto']: + if alias == remoteData[i]['address'] || alias in remoteData[i]['goto']: alias_exist = True i=i+1 cursor = conn.cursor()