Skip to content

Commit f668ba9

Browse files
committed
fix: handle errors
1 parent 7c0f95a commit f668ba9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/config.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,11 @@ export async function resolveConfig(ctx, overrides = {}) {
5555
confMap = await ctx.storage.get(siteKey, 'json');
5656
} else {
5757
const res = await ffetch(`https://main--${site}--${org}.aem.page/config.json`);
58-
if (res.status === 404) {
59-
throw errorWithResponse(404, 'config not found');
58+
if (!res.ok) {
59+
if (res.status === 404) {
60+
throw errorWithResponse(404, 'config not found');
61+
}
62+
throw errorWithResponse(500, 'config fetch failed');
6063
}
6164
const json = await res.json();
6265
confMap = json.public?.mixerConfig;

0 commit comments

Comments
 (0)