This commit is contained in:
Timothy Jaeryang Baek 2025-09-24 06:56:50 -05:00
parent 651f385ba5
commit c5a967e05f

View file

@ -302,7 +302,7 @@ class OAuthManager:
"expires_in" in new_token_data
and "expires_at" not in new_token_data
):
new_token_data["expires_at"] = (
new_token_data["expires_at"] = int(
datetime.now().timestamp()
+ new_token_data["expires_in"]
)