forked from MirrorHub/synapse
SYWEB-22: Format emote('/me') messages correctly in desktop notification
This commit is contained in:
parent
b6818fd4d2
commit
65c37cc852
1 changed files with 7 additions and 1 deletions
|
@ -200,11 +200,17 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
|
|||
if (member) {
|
||||
displayname = member.displayname;
|
||||
}
|
||||
|
||||
var message = event.content.body;
|
||||
if (event.content.msgtype === "m.emote") {
|
||||
message = "* " + displayname + " " + message;
|
||||
}
|
||||
|
||||
var notification = new window.Notification(
|
||||
(displayname || event.user_id) +
|
||||
" (" + (matrixService.getRoomIdToAliasMapping(event.room_id) || event.room_id) + ")", // FIXME: don't leak room_ids here
|
||||
{
|
||||
"body": event.content.body,
|
||||
"body": message,
|
||||
"icon": member ? member.avatar_url : undefined
|
||||
});
|
||||
$timeout(function() {
|
||||
|
|
Loading…
Reference in a new issue