mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Quick fix to support array of room aliases
This commit is contained in:
parent
2f52e8ee18
commit
7371e68f55
@ -71,9 +71,10 @@ angular.module('RoomsController', ['matrixService', 'mFileInput', 'mFileUpload',
|
|||||||
// use the existing alias from storage
|
// use the existing alias from storage
|
||||||
data[i].room_alias = alias;
|
data[i].room_alias = alias;
|
||||||
}
|
}
|
||||||
else if (data[i].room_alias) {
|
else if (data[i].aliases && data[i].aliases[0]) {
|
||||||
// save the mapping
|
// 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 {
|
else {
|
||||||
// last resort use the room id
|
// last resort use the room id
|
||||||
|
Loading…
Reference in New Issue
Block a user