mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-03-22 13:10:41 +08:00
Bugfix when password is disabled in config no new paste can be
created
This commit is contained in:
parent
d3153b5e38
commit
56222d6cfb
|
@ -3814,7 +3814,8 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
*/
|
||||
me.getPassword = function()
|
||||
{
|
||||
return $passwordInput.val();
|
||||
// when password is disabled $passwordInput.val() will return undefined
|
||||
return $passwordInput.val() || '';
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user