From da02b2df1e36f96f3faa1091f51c6eee53411f0a Mon Sep 17 00:00:00 2001 From: WardPearce Date: Thu, 5 Mar 2026 11:07:45 +1300 Subject: [PATCH] Watch history enable external setting always available --- materialious/src/lib/externalSettings/settings.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/materialious/src/lib/externalSettings/settings.ts b/materialious/src/lib/externalSettings/settings.ts index 707ec4b2..13593ce2 100644 --- a/materialious/src/lib/externalSettings/settings.ts +++ b/materialious/src/lib/externalSettings/settings.ts @@ -253,6 +253,11 @@ export const persistedStores: PersistedStore[] = [ store: sponsorBlockCategoriesStore, schema: zChapterModeRecord, serialize: JSON.stringify + }, + { + name: 'watchHistoryEnabled', + store: watchHistoryEnabledStore, + schema: zBoolean } ]; @@ -335,11 +340,6 @@ if (isOwnBackend()) { store: playerYouTubeJsAlways, schema: zBoolean }); - persistedStores.push({ - name: 'watchHistoryEnabled', - store: watchHistoryEnabledStore, - schema: zBoolean - }); } export const persistedStoreKeys = persistedStores.map((store) => store.name);