moonbase: Null propagate when calculating restart advice
@@ -429,8 +429,8 @@ continue;}}- const initConfig = typeof initState === "boolean" ? {} : initState.config ?? {};- const newConfig = typeof newState === "boolean" ? {} : newState.config ?? {};+ const initConfig = typeof initState === "boolean" ? {} : initState?.config ?? {};+ const newConfig = typeof newState === "boolean" ? {} : newState?.config ?? {};const def = ext.manifest.settings;if (!def) continue;