Commit dc2eb301 authored by JC Brand's avatar JC Brand

Bugfix

parent 967154d3
......@@ -764,7 +764,7 @@ converse.plugins.add('converse-muc-views', {
if (!(existing_actors?.length)) {
return result;
}
const actors = existing_actors.map(a => this.model.getOccupant(a)?.getDisplayName() || a.nick);
const actors = existing_actors.map(a => this.model.getOccupant(a)?.getDisplayName() || a);
if (actors.length === 1) {
if (state === 'composing') {
return `${result} ${__('%1$s is typing', actors[0])}\n`;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment