diff --git a/CHANGELOG.md b/CHANGELOG.md index 23e175be..b82cbc26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ - Minor: Improved Streamlink documentation in the settings dialog. (#5076) - Minor: Normalized the input padding between light & dark themes. (#5095) - Minor: Add `--activate ` (or `-a`) command line option to activate or add a Twitch channel. (#5111) +- Minor: Chatters from recent-messages are now added to autocompletion. (#5116) - Bugfix: Fixed an issue where certain emojis did not send to Twitch chat correctly. (#4840) - Bugfix: Fixed capitalized channel names in log inclusion list not being logged. (#4848) - Bugfix: Trimmed custom streamlink paths on all platforms making sure you don't accidentally add spaces at the beginning or end of its path. (#4834) diff --git a/src/providers/twitch/TwitchChannel.cpp b/src/providers/twitch/TwitchChannel.cpp index 518e21b6..704ecfa3 100644 --- a/src/providers/twitch/TwitchChannel.cpp +++ b/src/providers/twitch/TwitchChannel.cpp @@ -1214,6 +1214,8 @@ void TwitchChannel::loadRecentMessages() { msgs.push_back(msg); } + + tc->addRecentChatter(msg->displayName); } getApp()->twitch->mentionsChannel->fillInMissingMessages(msgs);