Add RTMP as an allowed protocol for links

This commit is contained in:
Nikolaj Dombrow 2015-05-14 08:32:30 +02:00 committed by Stefan Hacker
parent ab78e6c90c
commit de27cd7b72

View File

@ -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;
}