Fix unable to send msg in DM from IRC users (#135)

This commit is contained in:
kfiven 2021-10-10 19:33:20 +05:30 committed by Ajay Bura
parent e7de053171
commit d1d1e8ed2f

View file

@ -327,8 +327,7 @@ function RoomViewInput({
if (file !== null) roomsInput.setAttachment(roomId, file);
}
const myPowerlevel = roomTimeline.room.getMember(mx.getUserId()).powerLevel;
const canISend = roomTimeline.room.currentState.hasSufficientPowerLevelFor('events_default', myPowerlevel);
const canISend = roomTimeline.room.currentState.maySendMessage(mx.getUserId());
function renderInputs() {
if (!canISend) {