show private room_ids rather than nulls in notifs if there is no room_alias

pull/4/merge
Matthew Hodgson 11 years ago
parent e37b040bc3
commit cdc5ffe2a2
  1. 2
      webclient/room/room-controller.js

@ -147,7 +147,7 @@ angular.module('RoomController', ['ngSanitize'])
if (document.hidden) {
var notification = new window.Notification(
($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,
"icon": $scope.members[event.user_id].avatar_url,

Loading…
Cancel
Save