Forgot one change

This commit is contained in:
Kaki In 2022-07-28 09:26:08 +02:00
parent 3c64f7d49b
commit fb79326747
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ export class RoomViewModel extends ViewModel {
msgtype = "m.emote";
break;
case "join":
if (args.length == 1) {
if (args.length === 1) {
const roomName = args[0];
await this._processCommandJoin(roomName);
} else {