mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Small fixes to response marshaling, introduced tests for response formats
This commit is contained in:
parent
b9fb5eb7ca
commit
dde130e84e
10 changed files with 154 additions and 41 deletions
|
@ -17,7 +17,7 @@ const (
|
|||
)
|
||||
|
||||
func AddParams(endpoint string, params ...string) string {
|
||||
url := fmt.Sprintf("%s?u=%s&p=%s&c=%s&v=%s", endpoint, testUser, testPassword, testClient, testVersion)
|
||||
url := fmt.Sprintf("%s?u=%s&p=%s&c=%s&v=%s&f=json", endpoint, testUser, testPassword, testClient, testVersion)
|
||||
if len(params) > 0 {
|
||||
url = url + "&" + strings.Join(params, "&")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue