fix: compare settings before updating them (#5240)

This commit is contained in:
pajlada
2024-03-09 16:03:26 +01:00
committed by GitHub
parent 2e77b47ea1
commit 2361d30e4b
5 changed files with 17 additions and 4 deletions
+5
View File
@@ -7,6 +7,11 @@ ChannelLog::ChannelLog(QString channelName)
{
}
bool ChannelLog::operator==(const ChannelLog &other) const
{
return this->channelName_ == other.channelName_;
}
QString ChannelLog::channelName() const
{
return this->channelName_.toLower();