pull/541/head
sidhujag 2020-09-08 08:14:45 -07:00
parent d5a7139365
commit 5a954b00d8
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ func formatPercentage(a string) string {
func (s *PublicServer) formatKeyID(a string) string {
dst := make([]byte, hex.DecodedLen(len(a)))
_, errDecode := hex.Decode(dst, a)
_, errDecode := hex.Decode(dst, []byte(a))
if errDecode != nil {
glog.Error(errDecode)
return ""