Skip to content

Commit

Permalink
Update pkg/signalid/ids.go
Browse files Browse the repository at this point in the history
Co-authored-by: Tulir Asokan <[email protected]>
  • Loading branch information
maltee1 and tulir authored Aug 9, 2024
1 parent aec8c02 commit 18b09aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/signalid/ids.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func ParseUserID(userID networkid.UserID) (uuid.UUID, error) {
}

func ParseUserLoginID(userLoginID networkid.UserLoginID) (uuid.UUID, error) {
userID, err := ParseUserLoginID(userLoginID)
userID, err := uuid.Parse(string(userLoginID))
if err != nil {
return uuid.Nil, err
}
Expand Down

0 comments on commit 18b09aa

Please sign in to comment.