Only issue a directed message alert for directed to me...not ALLCALL

This commit is contained in:
Jordan Sherer 2018-09-07 17:33:28 -04:00
parent 942d960a90
commit 35139c6d84

View File

@ -9320,9 +9320,11 @@ void MainWindow::processCommandActivity() {
{"UTC", QVariant(ad.utcTimestamp.toMSecsSinceEpoch())}
});
auto wav = m_config.sound_dm_path();
if(!wav.isEmpty()){
QSound::play(wav);
if(!isAllCall){
auto wav = m_config.sound_dm_path();
if(!wav.isEmpty()){
QSound::play(wav);
}
}
}