From 3d4654d592f48ebe09669f2f6d06b31dc5b4e4f5 Mon Sep 17 00:00:00 2001 From: afknst Date: Fri, 3 Mar 2023 12:41:33 +0100 Subject: [PATCH] Fix: Cannot access qBittorrent from quick launch #1079 --- src/components/quicklaunch.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/quicklaunch.jsx b/src/components/quicklaunch.jsx index fbcae2c76..5e307480e 100644 --- a/src/components/quicklaunch.jsx +++ b/src/components/quicklaunch.jsx @@ -19,7 +19,7 @@ export default function QuickLaunch({servicesAndBookmarks, searchString, setSear function openCurrentItem(newWindow) { const result = results[currentItemIndex]; - window.open(result.href, newWindow ? "_blank" : result.target ?? settings.target ?? "_blank"); + window.open(result.href, newWindow ? "_blank" : result.target ?? settings.target ?? "_blank", 'noreferrer'); } const closeAndReset = useCallback(() => { @@ -87,7 +87,7 @@ export default function QuickLaunch({servicesAndBookmarks, searchString, setSear if (searchDescriptions) { newResults = newResults.sort((a, b) => b.priority - a.priority); } - + if (searchProvider) { newResults.push( {