diff options
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/commands.cpp | 10 | ||||
-rw-r--r-- | src/actions/commands.h | 1 |
2 files changed, 11 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 diff --git a/src/actions/commands.h b/src/actions/commands.h index d57f3d469..3b378931d 100644 --- a/src/actions/commands.h +++ b/src/actions/commands.h @@ -57,6 +57,7 @@ namespace Actions decHandler(addIgnoreAttack); decHandler(setDrop); decHandler(url); + decHandler(openUrl); } // namespace Actions #undef decHandler |