From b3a79543637b3660e6c9b2d38c6aea763e6de8be Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Fri, 23 Sep 2016 23:14:19 +0300 Subject: [PATCH] Use a subdomain to redirect to the actual URL for search plugins. Will allow to move around the plugins in the git repo with the 3.4.0 release. --- src/base/searchengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/searchengine.cpp b/src/base/searchengine.cpp index fd3898fab..88e922c7e 100644 --- a/src/base/searchengine.cpp +++ b/src/base/searchengine.cpp @@ -62,7 +62,7 @@ static inline void removePythonScriptIfExists(const QString &scriptPath) const QHash SearchEngine::m_categoryNames = SearchEngine::initializeCategoryNames(); SearchEngine::SearchEngine() - : m_updateUrl(QString("https://raw.github.com/qbittorrent/qBittorrent/master/src/searchengine/%1/engines/").arg(Utils::Misc::pythonVersion() >= 3 ? "nova3" : "nova")) + : m_updateUrl(QString("http://searchplugins.qbittorrent.org/%1/engines/").arg(Utils::Misc::pythonVersion() >= 3 ? "nova3" : "nova")) , m_searchStopped(false) { updateNova();