0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-15 09:08:23 +02:00

Quick fix to support array of room aliases

This commit is contained in:
Emmanuel ROHEE 2014-08-20 17:46:16 +02:00
parent 2f52e8ee18
commit 7371e68f55

View file

@ -71,9 +71,10 @@ angular.module('RoomsController', ['matrixService', 'mFileInput', 'mFileUpload',
// use the existing alias from storage
data[i].room_alias = alias;
}
else if (data[i].room_alias) {
else if (data[i].aliases && data[i].aliases[0]) {
// save the mapping
matrixService.createRoomIdToAliasMapping(data[i].room_id, data[i].room_alias);
// TODO: select the smarter alias from the array
matrixService.createRoomIdToAliasMapping(data[i].room_id, data[i].aliases[0]);
}
else {
// last resort use the room id