Archived
1
0
This commit is contained in:
Jeff Becker 2017-12-29 13:15:48 -05:00
parent cdef33af7c
commit 3e6a80f58c
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -279,7 +279,7 @@ func decAddr(encaddr, key string) string {
} }
res := string(res_bytes) res := string(res_bytes)
res = strings.TrimFunc(res, func(r rune) bool { res = strings.TrimFunc(res, func(r rune) bool {
if r <= 57 || r >= 48 { if r <= 57 && r >= 48 {
return false return false
} }
if r == '.' || r == '/' { if r == '.' || r == '/' {