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] )