Merge pull request 'fix: auto repair bugs #60' (#3) from fix/auto-20260313-104048 into main
All checks were successful
Build and Deploy Web / build-and-deploy (push) Successful in 1m46s

Merge PR #3 (approved via Log Center)
This commit is contained in:
zyc 2026-03-13 10:43:30 +08:00
commit 3ca35eca4d
2 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ function processQueue(error: Error | null, token: string | null = null) {
reject(error);
} else if (token) {
config.headers.Authorization = `Bearer ${token}`;
resolve(request(config));
request(config).then(resolve).catch(reject);
}
});
failedQueue = [];