summary refs log tree commit diff
path: root/src/timeline/InputBar.cpp
diff options
context:
space:
mode:
authorNepNep21 <nepnep91@protonmail.com>2023-12-19 21:44:19 -0300
committerNepNep21 <nepnep91@protonmail.com>2023-12-19 21:44:19 -0300
commit1295e84020b23f549aa5474fdeb282d399a3c369 (patch)
tree393cbc70acac3deda97c64f31f4c25c2ac85c098 /src/timeline/InputBar.cpp
parentImprove naming (diff)
downloadnheko-1295e84020b23f549aa5474fdeb282d399a3c369.tar.xz
Other occurences
Diffstat (limited to 'src/timeline/InputBar.cpp')
-rw-r--r--src/timeline/InputBar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp

index 224709ea..191aebdc 100644 --- a/src/timeline/InputBar.cpp +++ b/src/timeline/InputBar.cpp
@@ -941,9 +941,9 @@ InputBar::command(const QString &command, QString args) } else if (command == QLatin1String("converttoroom")) { utils::removeDirectFromRoom(this->room->roomId()); } else if (command == QLatin1String("ignore")) { - this->setArgIgnored(args, true); + this->toggleIgnore(args, true); } else if (command == QLatin1String("unignore")) { - this->setArgIgnored(args, false); + this->toggleIgnore(args, false); } else { return false; }