Fixed response of heartbeats
This commit is contained in:
parent
0e50639160
commit
1244f2d69e
@ -10505,7 +10505,7 @@ bool MainWindow::isMyCallIncluded(const QString &text){
|
||||
}
|
||||
|
||||
bool MainWindow::isAllCallIncluded(const QString &text){
|
||||
return text.contains("@ALLCALL");
|
||||
return text.contains("@ALLCALL") || text.contains("@HB");
|
||||
}
|
||||
|
||||
bool MainWindow::isGroupCallIncluded(const QString &text){
|
||||
@ -11122,7 +11122,7 @@ void MainWindow::processCommandActivity() {
|
||||
bool shouldDisplay = true;
|
||||
|
||||
// don't display ping allcalls
|
||||
if(isAllCall && (d.cmd != " " || ad.text.contains(": HB ") || ad.text.contains(": @ALLCALL HB "))){
|
||||
if(isAllCall && (d.cmd != " " || ad.text.contains("@HB HEARTBEAT"))){
|
||||
shouldDisplay = false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user