From ea691635a1c24f52dec859697421171db11bf4f3 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Mon, 16 Apr 2018 22:51:30 +0200 Subject: [PATCH] Properly force https for the FrankerFaceZ api --- src/singletons/emotemanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/singletons/emotemanager.cpp b/src/singletons/emotemanager.cpp index bfa4f3e9..b1f03063 100644 --- a/src/singletons/emotemanager.cpp +++ b/src/singletons/emotemanager.cpp @@ -51,7 +51,7 @@ QString GetFFZEmoteLink(const QJsonObject &urls, const QString &emoteScale) assert(emote.isString()); - return "http:" + emote.toString(); + return "https:" + emote.toString(); } void FillInFFZEmoteData(const QJsonObject &urls, const QString &code, const QString &tooltip,