copilot-api-plus 1.2.32 → 1.2.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +1 -0
- package/dist/main.js.map +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -2033,6 +2033,7 @@ async function handleMultiAccountHttpError(error, account, retryContext) {
|
|
|
2033
2033
|
accountManager.markAccountStatus(account.id, "error", `HTTP ${error.response.status}`);
|
|
2034
2034
|
return null;
|
|
2035
2035
|
}
|
|
2036
|
+
if (error.response.status === 400) return null;
|
|
2036
2037
|
accountManager.markAccountStatus(account.id, "error", `HTTP ${error.response.status}`);
|
|
2037
2038
|
return null;
|
|
2038
2039
|
}
|