summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/commands.cpp16
-rw-r--r--src/actions/commands.h1
2 files changed, 17 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index 018cca54a..ab116d805 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -75,6 +75,7 @@
#include "net/pethandler.h"
#include "net/net.h"
+#include "utils/chatutils.h"
#include "utils/gettext.h"
#include "utils/stringutils.h"
@@ -530,4 +531,19 @@ impHandler(setDrop)
return true;
}
+impHandler(url)
+{
+ if (event.tab)
+ {
+ std::string url = event.args;
+ if (!strStartWith(url, "http") && !strStartWith(url, "?"))
+ url = "http://" + url;
+ std::string str(strprintf("[@@%s |%s@@]",
+ url.c_str(), event.args.c_str()));
+ outStringNormal(event.tab, str, str);
+ return true;
+ }
+ return false;
+}
+
} // namespace Actions
diff --git a/src/actions/commands.h b/src/actions/commands.h
index b171e49e2..d57f3d469 100644
--- a/src/actions/commands.h
+++ b/src/actions/commands.h
@@ -56,6 +56,7 @@ namespace Actions
decHandler(removeAttack);
decHandler(addIgnoreAttack);
decHandler(setDrop);
+ decHandler(url);
} // namespace Actions
#undef decHandler