mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
removed unused method
This commit is contained in:
parent
4843ccb46c
commit
b9fb5eb7ca
1 changed files with 0 additions and 11 deletions
|
@ -27,17 +27,6 @@ func (c *BaseAPIController) SendError(errorCode int, message ...interface{}) {
|
|||
c.CustomAbort(200, xml.Header+string(xmlBody))
|
||||
}
|
||||
|
||||
func (c *BaseAPIController) prepResponse(response responses.Subsonic) interface{} {
|
||||
f := c.GetString("f")
|
||||
if f == "json" {
|
||||
type jsonWrapper struct {
|
||||
Subsonic responses.Subsonic `json:"subsonic-response"`
|
||||
}
|
||||
return jsonWrapper{Subsonic: response}
|
||||
}
|
||||
return response
|
||||
}
|
||||
|
||||
func (c *BaseAPIController) SendResponse(response responses.Subsonic) {
|
||||
f := c.GetString("f")
|
||||
if f == "json" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue