mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
feat: transcoding and player datastores and configuration
This commit is contained in:
parent
a0e0fbad58
commit
8ec78900c5
32 changed files with 783 additions and 29 deletions
|
@ -29,7 +29,7 @@ func userId(ctx context.Context) string {
|
|||
if user == nil {
|
||||
return invalidUserId
|
||||
}
|
||||
usr := user.(*model.User)
|
||||
usr := user.(model.User)
|
||||
return usr.ID
|
||||
}
|
||||
|
||||
|
@ -38,7 +38,8 @@ func loggedUser(ctx context.Context) *model.User {
|
|||
if user == nil {
|
||||
return &model.User{}
|
||||
}
|
||||
return user.(*model.User)
|
||||
u := user.(model.User)
|
||||
return &u
|
||||
}
|
||||
|
||||
func (r sqlRepository) newSelect(options ...model.QueryOptions) SelectBuilder {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue