diff options
Diffstat (limited to 'src/gui/updaterwindow.cpp')
-rw-r--r-- | src/gui/updaterwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/updaterwindow.cpp b/src/gui/updaterwindow.cpp index f392a4b79..3c3dfac9e 100644 --- a/src/gui/updaterwindow.cpp +++ b/src/gui/updaterwindow.cpp @@ -847,6 +847,6 @@ bool UpdaterWindow::validateFile(const std::string &filePath, void UpdaterWindow::handleLink(const std::string &link, gcn::MouseEvent *event A_UNUSED) { - if (strStartWith(link, "http://")) + if (strStartWith(link, "http://") || strStartWith(link, "https://")) openBrowser(link); } |