mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
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:
parent
daf6ebc513
commit
3ad1f109ac
|
@ -161,7 +161,7 @@ void BttvEmotes::loadChannel(std::weak_ptr<Channel> channel,
|
||||||
bool manualRefresh)
|
bool manualRefresh)
|
||||||
{
|
{
|
||||||
NetworkRequest(QString(bttvChannelEmoteApiUrl) + channelId)
|
NetworkRequest(QString(bttvChannelEmoteApiUrl) + channelId)
|
||||||
.timeout(3000)
|
.timeout(20000)
|
||||||
.onSuccess([callback = std::move(callback), channel,
|
.onSuccess([callback = std::move(callback), channel,
|
||||||
&channelDisplayName,
|
&channelDisplayName,
|
||||||
manualRefresh](auto result) -> Outcome {
|
manualRefresh](auto result) -> Outcome {
|
||||||
|
|
Loading…
Reference in a new issue