Fix missing pinned sources in search all

Regression 2e08d2c95a
This commit is contained in:
schroda
2026-01-28 22:59:41 +01:00
parent 1d8944bb48
commit 86b00dbcc7

View File

@@ -262,7 +262,7 @@ export const SearchAll: React.FC = () => {
isNsfw: showNsfw ? undefined : false,
languages: shownLangs,
keepLocalSource: true,
pinned: shouldShowOnlyPinnedSources,
pinned: shouldShowOnlyPinnedSources ? true : undefined,
enabled: true,
}),
[sources, shownLangs, shouldShowOnlyPinnedSources],