create AtRoomPill when autocomplete returns @room

This commit is contained in:
Bruno Windels 2019-06-14 18:25:43 +02:00
parent 65d56d1490
commit 78971f168f

View File

@ -95,7 +95,11 @@ export default class AutocompleteWrapperModel {
const firstChr = completionId && completionId[0];
switch (firstChr) {
case "@": {
return this._partCreator.userPill(text, completionId);
if (completionId === "@room") {
return this._partCreator.atRoomPill(completionId);
} else {
return this._partCreator.userPill(text, completionId);
}
}
case "#":
return this._partCreator.roomPill(completionId);