TwitchQt
-
trying to run this -> https://github.com/jkbz64/TwitchQt on Qt 6.2.0 (it was updated for 6.2.0) 2 days ago but i get these error that i dont understand
-
Hi,
When did you clone that library for the last time ?
From the looks of it, there have been fixes in the last couple of day. -
Hi,
When did you clone that library for the last time ?
From the looks of it, there have been fixes in the last couple of day. -
I was talking about TwitchQt.
-
if i understand correctly it is this
namespace nlohmann { template <> struct adl_serializer<QString> { static QString from_json(const json& j) { if (j.is_null()) return QString(""); else if (j.is_number()) { return QString::number(j.get<qint64>()); } else if (j.is_string()) { return QString::fromStdString(j.get<std::string>()); } return QString(""); } static void to_json(json& j, const QString& t) { j = t.toStdString(); } };
or am i wrong?
-
Please allow at least 24 hours to pass before bumping your own thread. This is a voluntary driven forum and people answering may not even live in the same timezone as you.
I am a bit skeptical on the to_json implementation.
-
It sounds like the maintainer of TwitchQt did not fully test Qt 6 compatibility, and "some things might still be broken": https://github.com/jkbz64/TwitchQt/issues/3
So create an Issue on their GitHub repo and post your error message there (copy and paste the text, not a screenshot). This should help them fix the issue.