From 3ad1f109ac48326958df7054fb49c20cf1ecd30d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82?= Date: Sun, 25 Apr 2021 18:17:37 +0200 Subject: [PATCH] Raised bttv emote timeout value (#2686) This should elimnate the BTTV Channel Emote loading timeout, often reported by multiple users. --- src/providers/bttv/BttvEmotes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/bttv/BttvEmotes.cpp b/src/providers/bttv/BttvEmotes.cpp index b3e89b54..1ec58af6 100644 --- a/src/providers/bttv/BttvEmotes.cpp +++ b/src/providers/bttv/BttvEmotes.cpp @@ -161,7 +161,7 @@ void BttvEmotes::loadChannel(std::weak_ptr channel, bool manualRefresh) { NetworkRequest(QString(bttvChannelEmoteApiUrl) + channelId) - .timeout(3000) + .timeout(20000) .onSuccess([callback = std::move(callback), channel, &channelDisplayName, manualRefresh](auto result) -> Outcome {