Raised bttv emote timeout value (#2686)

This should elimnate the BTTV Channel Emote loading timeout, often reported by multiple users.
This commit is contained in:
Paweł 2021-04-25 18:17:37 +02:00 committed by GitHub
parent daf6ebc513
commit 3ad1f109ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -161,7 +161,7 @@ void BttvEmotes::loadChannel(std::weak_ptr<Channel> channel,
bool manualRefresh)
{
NetworkRequest(QString(bttvChannelEmoteApiUrl) + channelId)
.timeout(3000)
.timeout(20000)
.onSuccess([callback = std::move(callback), channel,
&channelDisplayName,
manualRefresh](auto result) -> Outcome {