Add updatedAt to Bookmarks

This commit is contained in:
Deluan 2020-07-31 15:52:41 -04:00 committed by Deluan Quintão
parent 924ada0dab
commit 34e843a4b3
3 changed files with 11 additions and 0 deletions

View file

@ -89,6 +89,10 @@ func (r *playQueueRepository) AddBookmark(userId, id, comment string, position i
return err
}
if !prev.CreatedAt.IsZero() {
bm.CreatedAt = prev.CreatedAt
}
_, err = r.put(prev.ID, bm)
if err != nil {
log.Error(r.ctx, "Error saving bookmark", "user", u.UserName, err, "mediaFileId", id, err)
@ -112,6 +116,7 @@ func (r *playQueueRepository) GetBookmarks(userId string) (model.Bookmarks, erro
bms[i].Comment = pqs[i].Comment
bms[i].Position = int64(pqs[i].Position)
bms[i].CreatedAt = pqs[i].CreatedAt
bms[i].UpdatedAt = pqs[i].UpdatedAt
}
return bms, nil
}