fix(oauth): try resetting oauth data on refresh

This commit is contained in:
Matthew Esposito 2024-06-23 10:27:17 -04:00
parent 213481ef53
commit a673256e80

View file

@ -100,11 +100,10 @@ impl Oauth {
} }
async fn refresh(&mut self) -> Option<()> { async fn refresh(&mut self) -> Option<()> {
// Refresh is actually just a subsequent login with the same headers (without the old token // Set self to Oauth::new()
// or anything). This logic is handled in login, so we just call login again. *self = Self::new().await;
let refresh = self.login().await; info!("Refreshing OAuth token... success! New token: \"{}...\"", &self.token[..32]);
info!("Refreshing OAuth token... {}", if refresh.is_some() { "success" } else { "failed" }); Some(())
refresh
} }
} }