Add check for unauthorized - refresh token

This commit is contained in:
Matthew Esposito 2024-01-27 23:31:21 -05:00
parent d0c5a1d93a
commit 6c2579cda9
No known key found for this signature in database
2 changed files with 9 additions and 1 deletions

View file

@ -129,6 +129,11 @@ pub async fn token_daemon() {
}
}
}
pub async fn force_refresh_token() {
OAUTH_CLIENT.write().await.refresh().await;
}
#[derive(Debug, Clone, Default)]
struct Device {
oauth_id: String,