chore: remove unused reloadChannelAndSubscriberEmotes (#6756)

Reviewed-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
Nerixyz
2026-01-21 10:10:52 +01:00
committed by GitHub
parent d21b3c6e38
commit a362af6a37
3 changed files with 1 additions and 14 deletions
+1
View File
@@ -93,6 +93,7 @@
- Dev: Send multipart body for HTTP `PUT` requests. (#6746)
- Dev: Removed unused variables. (#6748)
- Dev: Updated `miniaudio` to 0.11.24. (#6754)
- Dev: Remove unused `reloadChannelAndSubscriberEmotes`. (#6756)
## 2.5.4
-13
View File
@@ -1260,19 +1260,6 @@ void Split::showSearch(bool singleChannel)
popup->show();
}
void Split::reloadChannelAndSubscriberEmotes()
{
auto channel = this->getChannel();
if (auto *twitchChannel = dynamic_cast<TwitchChannel *>(channel.get()))
{
twitchChannel->refreshTwitchChannelEmotes(true);
twitchChannel->refreshBTTVChannelEmotes(true);
twitchChannel->refreshFFZChannelEmotes(true);
twitchChannel->refreshSevenTVChannelEmotes(true);
}
}
void Split::reconnect()
{
this->getChannel()->reconnect();
-1
View File
@@ -203,7 +203,6 @@ public Q_SLOTS:
void showSearch(bool singleChannel);
void openChatterList();
void openSubPage();
void reloadChannelAndSubscriberEmotes();
void reconnect();
};