From a673256e80af227098243648e0ee37b9349dc182 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Sun, 23 Jun 2024 10:27:17 -0400 Subject: [PATCH] fix(oauth): try resetting oauth data on refresh --- src/oauth.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/oauth.rs b/src/oauth.rs index cea7693..1870560 100644 --- a/src/oauth.rs +++ b/src/oauth.rs @@ -100,11 +100,10 @@ impl Oauth { } async fn refresh(&mut self) -> Option<()> { - // Refresh is actually just a subsequent login with the same headers (without the old token - // or anything). This logic is handled in login, so we just call login again. - let refresh = self.login().await; - info!("Refreshing OAuth token... {}", if refresh.is_some() { "success" } else { "failed" }); - refresh + // Set self to Oauth::new() + *self = Self::new().await; + info!("Refreshing OAuth token... success! New token: \"{}...\"", &self.token[..32]); + Some(()) } }