mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Use new simplified uuid.NewString()
syntax
This commit is contained in:
parent
b47ec02f02
commit
861b406575
10 changed files with 17 additions and 32 deletions
|
@ -78,9 +78,8 @@ func AssertPlayQueue(expected, actual *model.PlayQueue) {
|
|||
func aPlayQueue(userId, current string, position int64, items ...model.MediaFile) *model.PlayQueue {
|
||||
createdAt := time.Now()
|
||||
updatedAt := createdAt.Add(time.Minute)
|
||||
id, _ := uuid.NewRandom()
|
||||
return &model.PlayQueue{
|
||||
ID: id.String(),
|
||||
ID: uuid.NewString(),
|
||||
UserID: userId,
|
||||
Current: current,
|
||||
Position: position,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue