fix mute composer, credits - layne

This commit is contained in:
dank074 2023-01-08 16:49:38 -06:00
parent aa8a68de28
commit 5c35918370
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ export class RoomMuteUserComposer implements IMessageComposer<ConstructorParamet
constructor(userId: number, minutes: number, roomId: number = 0)
{
this._data = [userId, minutes, roomId];
this._data = [userId, roomId, minutes];
}
public getMessageArray()