From ec6b26cd2393c816af6c23d1171a69c4b56d82fb Mon Sep 17 00:00:00 2001 From: hemirt Date: Thu, 28 Feb 2019 19:26:32 +0100 Subject: [PATCH] fix log message --- src/providers/twitch/TwitchApi.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/providers/twitch/TwitchApi.cpp b/src/providers/twitch/TwitchApi.cpp index 81ecbb6e..495ac992 100644 --- a/src/providers/twitch/TwitchApi.cpp +++ b/src/providers/twitch/TwitchApi.cpp @@ -71,9 +71,7 @@ void TwitchApi::findUserName(const QString userid, auto name = root.value("name"); if (!name.isString()) { - log("API Error: while getting user id, first user object `_id` key " - "is not a " - "string"); + log("API Error: while getting user name, `name` is not a string"); successCallback(""); return Failure; }