Compare commits

..

No commits in common. "c853ee3a556fbb675865dafca46b4142013b617c" and "b99ca4621a91ab62b5567d98b4533b4b8d320e6f" have entirely different histories.

View File

@ -29,5 +29,5 @@ func UuidValidate(uuid string) error {
func isLetter(r rune) bool {
l := unicode.ToLower(r)
return (l >= 'a' && l <= 'f')
return (l >= 'a' && l <= 'z')
}