mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Refactored responses
This commit is contained in:
parent
77e3aa7620
commit
01c68d6802
9 changed files with 64 additions and 69 deletions
|
@ -30,7 +30,7 @@ func (c *GetIndexesController) Get() {
|
|||
ifModifiedSince = "0"
|
||||
}
|
||||
|
||||
res := &responses.ArtistIndex{}
|
||||
res := responses.ArtistIndex{}
|
||||
res.IgnoredArticles = beego.AppConfig.String("ignoredArticles")
|
||||
|
||||
res.LastModified, err = c.properties.DefaultGet(consts.LastScan, "-1")
|
||||
|
@ -61,5 +61,7 @@ func (c *GetIndexesController) Get() {
|
|||
|
||||
}
|
||||
|
||||
c.Ctx.Output.Body(responses.NewXML(res))
|
||||
response := responses.NewEmpty()
|
||||
response.ArtistIndex = res
|
||||
c.Ctx.Output.Body(responses.ToXML(response))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue