mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Revert 16c2efc
No need to strip quotes from password. The problem was a bug in my expect/tcl script's quote escape syntax.
This commit is contained in:
parent
56f2923ade
commit
dee5e4cf7e
@ -22,7 +22,7 @@ class PasswordCallCredentials extends CallCredentials {
|
||||
public PasswordCallCredentials(String passwordValue) {
|
||||
if (passwordValue == null)
|
||||
throw new IllegalArgumentException(format("'%s' header value must not be null", PASSWORD_KEY));
|
||||
this.passwordValue = passwordValue.replace("\"", "");
|
||||
this.passwordValue = passwordValue;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user