mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Fix error in assignment of image/text
This commit is contained in:
parent
cf4f50dac8
commit
9c154e9747
1 changed files with 6 additions and 6 deletions
|
@ -55,14 +55,14 @@ NotificationsManager::postNotification(const QString &roomid,
|
|||
Q_UNUSED(icon)
|
||||
|
||||
QVariantMap hints;
|
||||
hints["image-data"] = sender + ": " + text;
|
||||
hints["image-data"] = icon;
|
||||
hints["sound-name"] = "message-new-instant";
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << "nheko"; // app_name
|
||||
argumentList << (uint)0; // replace_id
|
||||
argumentList << ""; // app_icon
|
||||
argumentList << roomname; // summary
|
||||
argumentList << text; // body
|
||||
argumentList << "nheko"; // app_name
|
||||
argumentList << (uint)0; // replace_id
|
||||
argumentList << ""; // app_icon
|
||||
argumentList << roomname; // summary
|
||||
argumentList << sender + ": " + text; // body
|
||||
// The list of actions has always the action name and then a localized version of that
|
||||
// action. Currently we just use an empty string for that.
|
||||
// TODO(Nico): Look into what to actually put there.
|
||||
|
|
Loading…
Reference in a new issue