Fixed lint

This commit is contained in:
Eric Traut
2026-01-05 18:04:53 -07:00
parent ddcb82c9b5
commit d681ed2f2b

View File

@@ -1598,12 +1598,7 @@ async fn load_stored_refresh_token_if_identity_matches(
return Ok(None);
};
if !tokens
.id_token
.chatgpt_account_id
.as_deref()
.is_some_and(|account_id| account_id == expected_account_id)
{
if tokens.id_token.chatgpt_account_id.as_deref() != Some(expected_account_id) {
return Ok(None);
}