1
0
mirror of https://github.com/ssh-vault/ssh-vault.git synced 2025-07-31 05:24:22 +03:00

fixed bug on cache (returning key instead of uKey)

This commit is contained in:
nbari
2016-10-07 11:26:41 +02:00
parent c49a38631c
commit 0eb0dd6ee1
3 changed files with 3 additions and 7 deletions

View File

@ -35,7 +35,7 @@ func (c *cache) Get(u string) (string, error) {
if err != nil {
log.Println(err)
}
return key, nil
return uKey, nil
}
return uKey, nil
}