Fixed passing password
This commit is contained in:
parent
84b2df03b6
commit
f64d3b103d
|
@ -9,7 +9,7 @@ open class GetAccountDataRequest(bankCode: String, loginName: String, password:
|
|||
: AccountCredentials(bankCode, loginName, password) {
|
||||
|
||||
constructor(credentials: AccountCredentials, options: GetAccountDataOptions? = null)
|
||||
: this(credentials.bankCode, credentials.loginName, credentials.loginName, options)
|
||||
: this(credentials.bankCode, credentials.loginName, credentials.password, options)
|
||||
|
||||
override fun toString() = "${super.toString()}: $options"
|
||||
}
|
Loading…
Reference in New Issue