mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-14 13:53:02 -07:00
fix(async): prevent missed async errors from bypassing catch handlers (#13714)
Co-authored-by: Tommaso Sciortino <sciortino@gmail.com>
This commit is contained in:
@@ -546,7 +546,7 @@ async function fetchCachedCredentials(): Promise<
|
||||
> {
|
||||
const useEncryptedStorage = getUseEncryptedStorageFlag();
|
||||
if (useEncryptedStorage) {
|
||||
return await OAuthCredentialStorage.loadCredentials();
|
||||
return OAuthCredentialStorage.loadCredentials();
|
||||
}
|
||||
|
||||
const pathsToTry = [
|
||||
|
||||
Reference in New Issue
Block a user