Fix hiding of password in WebDAV error messages and debug output
This commit is contained in:
parent
46b5876bbb
commit
8c8140e74e
1 changed files with 1 additions and 5 deletions
|
@ -956,11 +956,7 @@ Zotero.HTTP = new function() {
|
|||
|
||||
|
||||
this.getDisplayURI = function (uri) {
|
||||
var disp = uri.clone();
|
||||
if (disp.password) {
|
||||
disp.password = "********";
|
||||
}
|
||||
return disp;
|
||||
return uri.mutate().setPassword('********').finalize();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue