mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-05-04 19:56:37 +02:00
Allow disabling Passwords by setting them to an empty string
This commit is contained in:
parent
2435003403
commit
0e7cb78ec2
@ -431,7 +431,7 @@ exports.setPassword = function(padID, password, callback)
|
||||
if(ERR(err, callback)) return;
|
||||
|
||||
//set the password
|
||||
pad.setPassword(password);
|
||||
pad.setPassword(password == "" ? null : password);
|
||||
|
||||
callback();
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user