mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 18:04:55 +01:00
sugarsync: fix initial connection after config re-arrangement - Fixes #5525
In this commit the config system was re-arranged
94dbfa4ea
fs: change Config callback into state based callback #3455
This passed the password as a temporary config parameter but forgot to
reveal it in the API call.
This commit is contained in:
parent
227119da16
commit
890b6a45b5
@ -105,7 +105,7 @@ func init() {
|
||||
|
||||
authRequest := api.AppAuthorization{
|
||||
Username: username,
|
||||
Password: password,
|
||||
Password: obscure.MustReveal(password),
|
||||
Application: withDefault(opt.AppID, appID),
|
||||
AccessKeyID: withDefault(opt.AccessKeyID, accessKeyID),
|
||||
PrivateAccessKey: withDefault(opt.PrivateAccessKey, obscure.MustReveal(encryptedPrivateAccessKey)),
|
||||
|
Loading…
Reference in New Issue
Block a user