improve error message in loadEmotes

This commit is contained in:
Rasmus Karlsson 2018-07-07 21:59:17 +02:00
parent 926a753a54
commit 0d40894b47

View file

@ -338,7 +338,7 @@ void TwitchAccount::loadEmotes(std::function<void(const rapidjson::Document &)>
req.makeAuthorizedV5(this->getOAuthClient(), this->getOAuthToken()); req.makeAuthorizedV5(this->getOAuthClient(), this->getOAuthToken());
req.onError([=](int errorCode) { req.onError([=](int errorCode) {
Log("Error {}", errorCode); Log("[TwitchAccount::loadEmotes] Error {}", errorCode);
if (errorCode == 203) { if (errorCode == 203) {
// onFinished(FollowResult_NotFollowing); // onFinished(FollowResult_NotFollowing);
} else { } else {