diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index ab116d805..28b601ba2 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -77,6 +77,7 @@ #include "utils/chatutils.h" #include "utils/gettext.h" +#include "utils/process.h" #include "utils/stringutils.h" #include "debug.h" @@ -546,4 +547,13 @@ impHandler(url) return false; } +impHandler(openUrl) +{ + std::string url = event.args; + if (!strStartWith(url, "http")) + url = "http://" + url; + openBrowser(url); + return true; +} + } // namespace Actions |