Skip to content

Commit 63917aa

Browse files
author
Skyxim
committed
fix: uuid-map return failed error
1 parent 5016f52 commit 63917aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/utils/uuid.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var uuidNamespace, _ = uuid.FromString("00000000-0000-0000-0000-000000000000")
1010
func UUIDMap(str string) (uuid.UUID, error) {
1111
u, err := uuid.FromString(str)
1212
if err != nil {
13-
return uuid.NewV5(uuidNamespace, str), err
13+
return uuid.NewV5(uuidNamespace, str), nil
1414
}
1515
return u, nil
1616
}

0 commit comments

Comments
 (0)