Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMark Dain <mark@markdain.net>2021-03-27 22:00:11 +0300
committerMark Dain <mark@markdain.net>2021-03-27 22:06:39 +0300
commit32d9acf802e4a55f25f50f6677069319dc196f5d (patch)
tree06ff821473fe72bd286bd07852a37688fe96d58b /src
parentae2a8ee95b8fc7104a3e9c228bfd8b934eb41de0 (diff)
FEAT(client): Allow gemini:// in chat messages
This commit adds support for the Gemini protocol in chat messages.
Diffstat (limited to 'src')
-rw-r--r--src/mumble/Log.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mumble/Log.cpp b/src/mumble/Log.cpp
index 20cddf99c..cf694eb4f 100644
--- a/src/mumble/Log.cpp
+++ b/src/mumble/Log.cpp
@@ -419,6 +419,7 @@ const QStringList Log::allowedSchemes() {
qslAllowedSchemeNames << QLatin1String("mumble");
qslAllowedSchemeNames << QLatin1String("http");
qslAllowedSchemeNames << QLatin1String("https");
+ qslAllowedSchemeNames << QLatin1String("gemini");
qslAllowedSchemeNames << QLatin1String("ftp");
qslAllowedSchemeNames << QLatin1String("clientid");
qslAllowedSchemeNames << QLatin1String("channelid");