summaryrefslogtreecommitdiff
path: root/src/progs
diff options
context:
space:
mode:
authorjak1 <mike.wollmann@gmail.com>2021-12-18 22:32:34 +0100
committerjak1 <mike.wollmann@gmail.com>2021-12-18 22:32:34 +0100
commitf1b95ce0ff54d6a403ba07ad3dc899b638ffade2 (patch)
tree0e7e6f318ad7abc6d11b4c53c8ebc71c660c2692 /src/progs
parentbecb122a45942224e597fab88f40d5811e9c825c (diff)
downloadplus-f1b95ce0ff54d6a403ba07ad3dc899b638ffade2.tar.gz
plus-f1b95ce0ff54d6a403ba07ad3dc899b638ffade2.tar.bz2
plus-f1b95ce0ff54d6a403ba07ad3dc899b638ffade2.tar.xz
plus-f1b95ce0ff54d6a403ba07ad3dc899b638ffade2.zip
added ftp:// to url command also @@ftp:/foo.bar|baz@@ fixes #38
Diffstat (limited to 'src/progs')
-rw-r--r--src/progs/manaplus/actions/commands.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/progs/manaplus/actions/commands.cpp b/src/progs/manaplus/actions/commands.cpp
index 711816eac..ff0d91e3d 100644
--- a/src/progs/manaplus/actions/commands.cpp
+++ b/src/progs/manaplus/actions/commands.cpp
@@ -724,7 +724,8 @@ impHandler(url)
if (event.tab != nullptr)
{
std::string url1 = event.args;
- if (!strStartWith(url1, "http") && !strStartWith(url1, "?"))
+ if (!strStartWith(url1, "http") && !strStartWith(url1, "ftp") &&
+ !strStartWith(url1, "?"))
url1 = "http://" + url1;
std::string str(strprintf("[@@%s |%s@@]",
url1.c_str(), event.args.c_str()));
@@ -737,7 +738,7 @@ impHandler(url)
impHandler(openUrl)
{
std::string url = event.args;
- if (!strStartWith(url, "http"))
+ if (!strStartWith(url, "http") && !strStartWith(url, "ftp"))
url = "http://" + url;
openBrowser(url);
return true;