We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eee6688 commit 94e9c1fCopy full SHA for 94e9c1f
core.go
@@ -90,7 +90,8 @@ func ParseUUID128(s string) (UUID, error) {
90
func ParseUUID(s string) (UUID, error) {
91
switch len(s) {
92
case UUID16StringLength:
93
- return ParseUUID16(s)
+ converted := fmt.Sprintf("0000%s-0000-1000-8000-00805F9B34FB", s)
94
+ return ParseUUID128(converted)
95
case UUID32StringLength:
96
converted := fmt.Sprintf("%s-0000-1000-8000-00805F9B34FB", s)
97
return ParseUUID128(converted)
0 commit comments