mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
chore: temporary fix sync script error (#3044)
This commit is contained in:
@@ -136,7 +136,12 @@ export const createsNewKey = async (
|
||||
body: JSON.stringify({ name: key, translations }),
|
||||
});
|
||||
if (resp.status < 200 || resp.status >= 300) {
|
||||
throw new Error(url + ' ' + resp.status + '\n' + (await resp.text()));
|
||||
/**
|
||||
* There are some problems in the i18n backend,
|
||||
* which is used to temporarily solve the ci error.
|
||||
*/
|
||||
console.warn(url + ' ' + resp.status + '\n' + (await resp.text()));
|
||||
return;
|
||||
}
|
||||
const json = await resp.json();
|
||||
return json;
|
||||
|
||||
Reference in New Issue
Block a user