Skip to content

Commit 835f4b2

Browse files
author
Maximilian Csuk
committed
Bugfix for CredentialStore.Get
1 parent c90e31f commit 835f4b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/credential/CredentialStore.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,6 @@ func (cs *CredentialStore) tryGet(url string) (*credentials.Credentials, error)
5454
}
5555

5656
func (cs *CredentialStore) Get(url string) (*credentials.Credentials, error) {
57-
return client.Get(cs.nativeStoreWin, url)
57+
c, err := cs.tryGet(url)
58+
return c, err
5859
}

0 commit comments

Comments
 (0)