show private room_ids rather than nulls in notifs if there is no room_alias
parent
e37b040bc3
commit
cdc5ffe2a2
|
@ -147,7 +147,7 @@ angular.module('RoomController', ['ngSanitize'])
|
||||||
if (document.hidden) {
|
if (document.hidden) {
|
||||||
var notification = new window.Notification(
|
var notification = new window.Notification(
|
||||||
($scope.members[event.user_id].displayname || event.user_id) +
|
($scope.members[event.user_id].displayname || event.user_id) +
|
||||||
" (" + $scope.room_alias + ")",
|
" (" + ($scope.room_alias || $scope.room_id) + ")", // FIXME: don't leak room_ids here
|
||||||
{
|
{
|
||||||
"body": event.content.body,
|
"body": event.content.body,
|
||||||
"icon": $scope.members[event.user_id].avatar_url,
|
"icon": $scope.members[event.user_id].avatar_url,
|
||||||
|
|
Loading…
Reference in New Issue