fix(core,ui): use HTTPS to access api.zealdocs.org

This commit is contained in:
Oleg Shparber 2019-03-25 22:43:39 -04:00
parent 407e4161e4
commit 07fdaec85d
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ using namespace Zeal;
using namespace Zeal::Core;
namespace {
const char ReleasesApiUrl[] = "http://api.zealdocs.org/v1/releases";
const char ReleasesApiUrl[] = "https://api.zealdocs.org/v1/releases";
}
Application *Application::m_instance = nullptr;

View File

@ -54,7 +54,7 @@ extern Q_CORE_EXPORT int qt_ntfs_permission_lookup;
#endif
namespace {
const char ApiServerUrl[] = "http://api.zealdocs.org/v1";
const char ApiServerUrl[] = "https://api.zealdocs.org/v1";
const char RedirectServerUrl[] = "https://go.zealdocs.org";
// TODO: Each source plugin should have its own cache
const char DocsetListCacheFileName[] = "com.kapeli.json";