From 8df2793a44aa40e878f5297489be0344a1f8a3e9 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Thu, 9 Jan 2025 13:40:47 -0500 Subject: [PATCH] fix linbks --- services/web/project/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index cc96e05..1958286 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -405,7 +405,7 @@ def verify_register(): # print(account[0]) account_found = count = len( account ) - if account_found > 0 : + if account_found == 0 : return jsonify({'status': "INVALID",'message': 'Error - Invalid sign up link'}), 403 accountRes = json.dumps( [dict(ix) for ix in account] )