From 0fcbb59145355e15f74b9990eb43d5d67716d069 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Sun, 17 Nov 2024 22:36:23 +0100 Subject: [PATCH] Remove token validate --- src/modules/stream_notifications/twitch/authorize.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/stream_notifications/twitch/authorize.py b/src/modules/stream_notifications/twitch/authorize.py index 277a42a..d0906b8 100644 --- a/src/modules/stream_notifications/twitch/authorize.py +++ b/src/modules/stream_notifications/twitch/authorize.py @@ -25,8 +25,7 @@ async def authorize(auto_refresh_auth: bool = False) -> Twitch: await twitch.set_user_authentication( token, SCOPES, - refresh_token=refresh_token if auto_refresh_auth else None, - validate=True + refresh_token=refresh_token if auto_refresh_auth else None ) await twitch.authenticate_app(SCOPES)