From 018ec0dd942417926c39efbbdf73c7fbfae1ff79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Malak?= Date: Thu, 20 Jul 2023 19:28:00 +0200 Subject: [PATCH] Fixed bug#270 where setting was not respected when local was set as primary search --- client/src/utility/searchParser.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/utility/searchParser.ts b/client/src/utility/searchParser.ts index b794fe7..2f1451c 100644 --- a/client/src/utility/searchParser.ts +++ b/client/src/utility/searchParser.ts @@ -56,6 +56,7 @@ export const searchParser = (searchQuery: string): SearchResult => { if (prefix === 'l') { result.isLocal = true; } + result.sameTab = config.searchSameTab; if (secondarySearch) {