mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Remove unused lambda capture to fix warnings
This commit is contained in:
parent
7ff567d584
commit
a878ca8062
|
@ -699,13 +699,13 @@ PubSub::PubSub()
|
||||||
};
|
};
|
||||||
|
|
||||||
this->moderationActionHandlers["denied_automod_message"] =
|
this->moderationActionHandlers["denied_automod_message"] =
|
||||||
[this](const auto &data, const auto &roomID) {
|
[](const auto &data, const auto &roomID) {
|
||||||
// This message got denied by a moderator
|
// This message got denied by a moderator
|
||||||
// qDebug() << QString::fromStdString(rj::stringify(data));
|
// qDebug() << QString::fromStdString(rj::stringify(data));
|
||||||
};
|
};
|
||||||
|
|
||||||
this->moderationActionHandlers["approved_automod_message"] =
|
this->moderationActionHandlers["approved_automod_message"] =
|
||||||
[this](const auto &data, const auto &roomID) {
|
[](const auto &data, const auto &roomID) {
|
||||||
// This message got approved by a moderator
|
// This message got approved by a moderator
|
||||||
// qDebug() << QString::fromStdString(rj::stringify(data));
|
// qDebug() << QString::fromStdString(rj::stringify(data));
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue