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");
|
||||
content = i18n("Missed call from %1", contactName);
|
||||
} else if (event == QLatin1String("talking")) {
|
||||
m_currentCallNotification->close();
|
||||
if (m_currentCallNotification) {
|
||||
m_currentCallNotification->close();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue