We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e262a6c commit 4abd731Copy full SHA for 4abd731
core/src/main/java/ch/cyberduck/core/Credentials.java
@@ -82,8 +82,8 @@ public Credentials() {
82
public Credentials(final Credentials copy) {
83
this.user = copy.user;
84
this.password = copy.password;
85
- this.tokens = copy.tokens;
86
- this.oauth = copy.oauth;
+ this.tokens = new TemporaryAccessTokens(copy.tokens);
+ this.oauth = new OAuthTokens(copy.oauth);
87
this.properties.putAll(copy.properties);
88
this.identity = copy.identity;
89
this.identityPassphrase = copy.identityPassphrase;
0 commit comments