We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab032d commit 3d3e375Copy full SHA for 3d3e375
src/subsonic.go
@@ -173,7 +173,7 @@ func getDiscoveryPlaylist(cfg Config) ([]string, error) {
173
}
174
175
func updSubsonicPlaylist(cfg Config, ID, comment string) error {
176
- reqParam := fmt.Sprintf("updatePlaylist?id=%s&comment=%s", ID, comment)
+ reqParam := fmt.Sprintf("updatePlaylist?id=%s&comment=%s", ID, url.QueryEscape(comment))
177
178
if _, err := subsonicRequest(reqParam, cfg); err != nil {
179
return err
0 commit comments