summaryrefslogtreecommitdiff
path: root/src/gui/updaterwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-02-10 03:06:47 +0300
committerAndrei Karas <akaras@inbox.ru>2013-02-10 03:07:44 +0300
commit5c50beef4fca106a843e9370ed40e5ef9d60bac3 (patch)
tree46c74d648832114944dfb183d1a52d84baaca85c /src/gui/updaterwindow.cpp
parent0f67a984182336dac85b15e55cbe3bb11c29424a (diff)
downloadplus-5c50beef4fca106a843e9370ed40e5ef9d60bac3.tar.gz
plus-5c50beef4fca106a843e9370ed40e5ef9d60bac3.tar.bz2
plus-5c50beef4fca106a843e9370ed40e5ef9d60bac3.tar.xz
plus-5c50beef4fca106a843e9370ed40e5ef9d60bac3.zip
Add https support to link handlers.
Diffstat (limited to 'src/gui/updaterwindow.cpp')
-rw-r--r--src/gui/updaterwindow.cpp2
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);
}