Skip to content

Commit 1ffe56a

Browse files
authored
fix: bump oauth timeout (#115)
1 parent 8ee7b34 commit 1ffe56a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/services/oauth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ export async function performOAuthFlow(
289289
const code = await Promise.race([
290290
waitForCallback(),
291291
new Promise<never>((_, reject) =>
292-
setTimeout(() => reject(new Error("Authorization timed out")), 30_000),
292+
setTimeout(() => reject(new Error("Authorization timed out")), 180_000),
293293
),
294294
]);
295295

0 commit comments

Comments
 (0)