Compare commits

..

3 Commits

Author SHA1 Message Date
zyc
3ca35eca4d 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)
2026-03-13 10:43:30 +08:00
repair-agent
02d8e9e030 fix: auto repair bugs #60 2026-03-13 10:42:35 +08:00
zyc
62b7ea8017 Merge pull request 'fix: auto repair bugs #50' (#2) from fix/auto-20260309-100520 into main
Some checks failed
Build and Deploy Web / build-and-deploy (push) Failing after 1m3s
Merge PR #2 (approved via Log Center)
2026-03-13 10:28:59 +08:00
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 = [];