From 3fa812ced6aca82e67635197396e6f80cc6277f0 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sun, 3 Aug 2025 15:16:57 +0800 Subject: [PATCH] Use source URL for search plugins This saves a few URL redirections. And avoids potential issues related to Cloudflare protections/blockages on qbt domain. Closes #22990. PR #23048. --- src/base/search/searchpluginmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/search/searchpluginmanager.cpp b/src/base/search/searchpluginmanager.cpp index ab53c5d5e..7178164f9 100644 --- a/src/base/search/searchpluginmanager.cpp +++ b/src/base/search/searchpluginmanager.cpp @@ -87,7 +87,7 @@ namespace QPointer SearchPluginManager::m_instance = nullptr; SearchPluginManager::SearchPluginManager() - : m_updateUrl(u"https://searchplugins.qbittorrent.org/nova3/engines/"_s) + : m_updateUrl(u"https://raw.githubusercontent.com/qbittorrent/search-plugins/refs/heads/master/nova3/engines/"_s) { Q_ASSERT(!m_instance); // only one instance is allowed m_instance = this;