Skip to content

Commit

Permalink
Merge pull request #84 from niwaniwa/fix/uuid#18
Browse files Browse the repository at this point in the history
fix uuid version
  • Loading branch information
niwaniwa authored Jan 14, 2024
2 parents 9047efe + ccb9216 commit d045a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emoji.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type Emoji struct {
}

func newEmojiRequest(user string) *Emoji {
id, _ := uuid.NewUUID()
id := uuid.New()
emoji := Emoji{
ID: id.String(),
}
Expand Down

0 comments on commit d045a0d

Please sign in to comment.