fix docker plugin encoding (#278)
This commit is contained in:
parent
10a4965e91
commit
5a724c6dd3
2 changed files with 2 additions and 2 deletions
|
|
@ -199,7 +199,7 @@ func (p *plugin) findAndCreateUpstream(conn libplugin.ConnMetadata, password str
|
|||
}
|
||||
|
||||
// ignore username and match all
|
||||
rest, err := base64.RawStdEncoding.DecodeString(pipe.AuthorizedKeys)
|
||||
rest, err := base64.StdEncoding.DecodeString(pipe.AuthorizedKeys)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue