mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-04 05:38:57 +01:00
Fix SYWEB-110 : Prevent room ID leaking by looking for an m.room.name
This commit is contained in:
parent
4841b6d4ba
commit
4f6acf114c
1 changed files with 11 additions and 1 deletions
|
@ -221,9 +221,19 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
|
|||
message = "* " + displayname + " " + message;
|
||||
}
|
||||
|
||||
var roomTitle = matrixService.getRoomIdToAliasMapping(event.room_id);
|
||||
var theRoom = $rootScope.events.rooms[event.room_id];
|
||||
if (!roomTitle && theRoom && theRoom["m.room.name"] && theRoom["m.room.name"].content) {
|
||||
roomTitle = theRoom["m.room.name"].content.name;
|
||||
}
|
||||
|
||||
if (!roomTitle) {
|
||||
roomTitle = event.room_id;
|
||||
}
|
||||
|
||||
var notification = new window.Notification(
|
||||
displayname +
|
||||
" (" + (matrixService.getRoomIdToAliasMapping(event.room_id) || event.room_id) + ")", // FIXME: don't leak room_ids here
|
||||
" (" + roomTitle + ")",
|
||||
{
|
||||
"body": message,
|
||||
"icon": member ? member.avatar_url : undefined
|
||||
|
|
Loading…
Reference in a new issue