diff --git a/daemon/packageinterfaces/notificationpackageinterface.cpp b/daemon/packageinterfaces/notificationpackageinterface.cpp index e0a001b54..83f54e0c3 100644 --- a/daemon/packageinterfaces/notificationpackageinterface.cpp +++ b/daemon/packageinterfaces/notificationpackageinterface.cpp @@ -35,7 +35,6 @@ KNotification* NotificationPackageInterface::createNotification(const QString& d if (npType == "ringing") { type = "callReceived"; icon = "call-start"; - QString number = content = "Incoming call from " + np.get("phoneNumber","unknown number"); } else if (npType == "missedCall") { type = "missedCall"; @@ -44,7 +43,10 @@ KNotification* NotificationPackageInterface::createNotification(const QString& d } else if (npType == "sms") { type = "smsReceived"; icon = "mail-receive"; - content = "SMS received from " + np.get("phoneNumber","unknown number"); + content = "SMS from " + + np.get("phoneNumber","unknown number") + + ":\n" + + np.get("messageBody",""); } else if (npType == "battery") { type = "battery100"; icon = "battery-100";