Update init.py

This commit is contained in:
gyuu04 2025-07-21 20:30:27 +09:00
commit a4b14ab20f

View file

@ -73,7 +73,6 @@ class AddonBase:
tasks = [ tasks = [
try_catch(PKCEDowngradeChecker().test(flow)), try_catch(PKCEDowngradeChecker().test(flow)),
try_catch(_open_redirect_checker.test(flow)),
] ]
await asyncio.gather(*tasks) await asyncio.gather(*tasks)
@ -87,6 +86,7 @@ class AddonBase:
try_catch(ClientSecret().test(flow)), try_catch(ClientSecret().test(flow)),
try_catch(AccessTokenScanner().scan(flow)), try_catch(AccessTokenScanner().scan(flow)),
try_catch(GoogleResponseTypeToken().test(flow)), try_catch(GoogleResponseTypeToken().test(flow)),
try_catch(_open_redirect_checker.test(flow)),
] ]
await asyncio.gather(*tasks) await asyncio.gather(*tasks)