call matches with normalized name
This commit is contained in:
parent
66ffaf945f
commit
83e2461155
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ export class NameFilterCondition extends EventEmitter implements IFilterConditio
|
||||||
|
|
||||||
if (!room.name) return false; // should realistically not happen: the js-sdk always calculates a name
|
if (!room.name) return false; // should realistically not happen: the js-sdk always calculates a name
|
||||||
|
|
||||||
return this.matches(room.name);
|
return this.matches(room.normalizedName);
|
||||||
}
|
}
|
||||||
|
|
||||||
public matches(normalizedName: string): boolean {
|
public matches(normalizedName: string): boolean {
|
||||||
|
|
Loading…
Reference in a new issue