Skip to content

Commit 1fcc807

Browse files
authored
Fix customization not found (#2734)
1 parent 5664e5a commit 1fcc807

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

.changeset/hip-comics-cross.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'gitbook': patch
3+
---
4+
5+
Fix errors from customization not found

packages/gitbook/src/lib/api.ts

+15-3
Original file line numberDiff line numberDiff line change
@@ -850,9 +850,21 @@ export async function getSiteData(
850850
const spaces =
851851
siteSpaces ?? (sections ? parseSpacesFromSiteSpaces(sections.section.siteSpaces) : []);
852852

853-
const customization = await getActiveCustomizationSettings(
854-
pointer.siteSpaceId ? customizations.siteSpaces[pointer.siteSpaceId] : customizations.site,
855-
);
853+
const settings = (() => {
854+
if (pointer.siteSpaceId) {
855+
const siteSpaceSettings = customizations.siteSpaces[pointer.siteSpaceId];
856+
if (siteSpaceSettings) {
857+
return siteSpaceSettings;
858+
}
859+
// We got the pointer from an API and customizations from another.
860+
// It's possible that the two are unsynced leading to not found customizations for the space.
861+
// It's better to fallback on customization of the site that displaying an error.
862+
console.warn('Customization not found for site space', pointer.siteSpaceId);
863+
}
864+
return customizations.site;
865+
})();
866+
867+
const customization = await getActiveCustomizationSettings(settings);
856868

857869
return {
858870
customization,

0 commit comments

Comments
 (0)