We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fb7f3f commit b074258Copy full SHA for b074258
scripts/check-i18n-links
@@ -271,7 +271,7 @@ async function check(links) {
271
statusMessage = e.response ? e.response.statusText : e.statusText;
272
}
273
274
- if (statusCode !== 200) {
+ if (statusCode !== 200 && statusCode !== 202) {
275
const sc = `${ statusCode }`.padEnd(5);
276
277
console.log(` ${ link } : ${ sc } ${ statusMessage || '' }`); // eslint-disable-line no-console
0 commit comments