Compare commits
1 commit
master
...
checknulln
Author | SHA1 | Date | |
---|---|---|---|
|
168c7f50ed |
1 changed files with 3 additions and 1 deletions
|
@ -55,7 +55,9 @@ void TelephonyPlugin::createNotification(const NetworkPacket& np)
|
||||||
icon = QStringLiteral("call-start");
|
icon = QStringLiteral("call-start");
|
||||||
content = i18n("Missed call from %1", contactName);
|
content = i18n("Missed call from %1", contactName);
|
||||||
} else if (event == QLatin1String("talking")) {
|
} else if (event == QLatin1String("talking")) {
|
||||||
|
if (m_currentCallNotification) {
|
||||||
m_currentCallNotification->close();
|
m_currentCallNotification->close();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue