mirror of
https://github.com/GAM-team/GAM.git
synced 2025-07-07 21:23:34 +00:00
Fix error
This commit is contained in:
@ -8715,7 +8715,7 @@ def validateSetGAMScopes(json_data):
|
||||
for api, value in json_data.items():
|
||||
if not isinstance(value, list):
|
||||
return False
|
||||
GM_Globals[GM_GAMSCOPES_BY_API][api] = set(value)
|
||||
GM_Globals[GM_GAMSCOPES_BY_API][api] = list(set(value))
|
||||
return len(GM_Globals[GM_GAMSCOPES_BY_API]) > 0
|
||||
|
||||
def OAuthInfo():
|
||||
|
Reference in New Issue
Block a user