From a004a8b092f1b86be2a44be29f2cffc9ec1309aa Mon Sep 17 00:00:00 2001 From: zadam Date: Sun, 15 Jan 2023 12:54:38 +0100 Subject: [PATCH] fix loading custom themes in Options, closes #3528 --- src/routes/api/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/api/options.js b/src/routes/api/options.js index a176bb45f..ddb4321ec 100644 --- a/src/routes/api/options.js +++ b/src/routes/api/options.js @@ -112,7 +112,7 @@ function update(name, value) { } function getUserThemes() { - const notes = searchService.searchNotes("#appTheme"); + const notes = searchService.searchNotes("#appTheme", {ignoreHoistedNote: true}); const ret = []; for (const note of notes) {