mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
rename variables to remove _
This commit is contained in:
parent
584aa2ce26
commit
7a82756a8f
1 changed files with 3 additions and 2 deletions
|
@ -40,9 +40,10 @@ void ChatterinoBadges::loadChatterinoBadges()
|
|||
std::unique_lock lock(this->mutex_);
|
||||
|
||||
int index = 0;
|
||||
for (const auto &jsonBadge_ : jsonRoot.value("badges").toArray())
|
||||
for (const auto &jsonBadgeValue :
|
||||
jsonRoot.value("badges").toArray())
|
||||
{
|
||||
auto jsonBadge = jsonBadge_.toObject();
|
||||
auto jsonBadge = jsonBadgeValue.toObject();
|
||||
auto emote = Emote{
|
||||
EmoteName{},
|
||||
ImageSet{Url{jsonBadge.value("image1").toString()},
|
||||
|
|
Loading…
Reference in a new issue