File tree 2 files changed +20
-3
lines changed
2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' gitbook ' : patch
3
+ ---
4
+
5
+ Fix errors from customization not found
Original file line number Diff line number Diff line change @@ -850,9 +850,21 @@ export async function getSiteData(
850
850
const spaces =
851
851
siteSpaces ?? ( sections ? parseSpacesFromSiteSpaces ( sections . section . siteSpaces ) : [ ] ) ;
852
852
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 ) ;
856
868
857
869
return {
858
870
customization,
You can’t perform that action at this time.
0 commit comments