From de27cd7b72ed09042b3d020f1c5aa78656eb7cf0 Mon Sep 17 00:00:00 2001 From: Nikolaj Dombrow Date: Thu, 14 May 2015 08:32:30 +0200 Subject: [PATCH] Add RTMP as an allowed protocol for links --- src/mumble/Log.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mumble/Log.cpp b/src/mumble/Log.cpp index 08d247f1851..e30f522b572 100644 --- a/src/mumble/Log.cpp +++ b/src/mumble/Log.cpp @@ -288,6 +288,7 @@ const QStringList Log::allowedSchemes() { qslAllowedSchemeNames << QLatin1String("mailto"); qslAllowedSchemeNames << QLatin1String("xmpp"); qslAllowedSchemeNames << QLatin1String("skype"); + qslAllowedSchemeNames << QLatin1String("rtmp"); // http://en.wikipedia.org/wiki/Real_Time_Messaging_Protocol return qslAllowedSchemeNames; }