Fix(Authentication): Fix error causing cookie from Auth0 for login callback method to be blocked by samesite configuration.

This commit is contained in:
2025-07-11 18:15:09 +01:00
parent de31150037
commit 62cafa8bed
3 changed files with 9 additions and 9 deletions

View File

@@ -100,7 +100,6 @@ class DataStore_User(DataStore_Base):
users.append(user)
Helper_App.console_log(f'user {str(type(user))}: {user}')
"""
errors = []
cursor.nextset()
result_set_e = cursor.fetchall()
@@ -109,8 +108,8 @@ class DataStore_User(DataStore_Base):
errors = [SQL_Error.from_DB_record(row) for row in result_set_e]
for error in errors:
Helper_App.console_log(f"Error [{error.code}]: {error.msg}")
"""
errors = None
# errors = None
DataStore_User.db_cursor_clear(cursor)
return users, errors