mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-09 09:26:50 +00:00
BF: Made /op work when providing no power value. 50 is used as default in this case
This commit is contained in:
parent
811716592c
commit
81ecaf945d
1 changed files with 1 additions and 1 deletions
|
@ -460,7 +460,7 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
|
|||
var powerLevel = 50; // default power level for op
|
||||
if (matches) {
|
||||
var user_id = matches[1];
|
||||
if (matches.length === 4) {
|
||||
if (matches.length === 4 && undefined !== matches[3]) {
|
||||
powerLevel = parseInt(matches[3]);
|
||||
}
|
||||
if (powerLevel !== NaN) {
|
||||
|
|
Loading…
Add table
Reference in a new issue