mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Supporting "jsonp" format
This commit is contained in:
parent
eabee8b502
commit
3ab09c4b2c
1 changed files with 7 additions and 2 deletions
|
@ -29,11 +29,16 @@ func (c *BaseAPIController) SendError(errorCode int, message ...interface{}) {
|
|||
|
||||
func (c *BaseAPIController) SendResponse(response responses.Subsonic) {
|
||||
f := c.GetString("f")
|
||||
if f == "json" {
|
||||
switch f {
|
||||
case "json":
|
||||
w := &responses.JsonWrapper{Subsonic: response}
|
||||
c.Data["json"] = &w
|
||||
c.ServeJSON()
|
||||
} else {
|
||||
case "jsonp":
|
||||
w := &responses.JsonWrapper{Subsonic: response}
|
||||
c.Data["jsonp"] = &w
|
||||
c.ServeJSONP()
|
||||
default:
|
||||
c.Data["xml"] = &response
|
||||
c.ServeXML()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue