diff options
author | HyShai <HyShai@users.noreply.github.com> | 2018-12-14 01:51:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-14 01:51:54 -0500 |
commit | 76268773b5e5cb510d8e17ea20c7551349134545 (patch) | |
tree | b198b4d01342fa89b95a39d33866194439bf9e38 /src/output | |
parent | 5cb603983e2e20f1d2f9f638be55e945c90bd6b4 (diff) |
change HTTP Version to a valid version
Diffstat (limited to 'src/output')
-rw-r--r-- | src/output/plugins/httpd/IcyMetaDataServer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/plugins/httpd/IcyMetaDataServer.cxx b/src/output/plugins/httpd/IcyMetaDataServer.cxx index 10d908285..2d1507ddb 100644 --- a/src/output/plugins/httpd/IcyMetaDataServer.cxx +++ b/src/output/plugins/httpd/IcyMetaDataServer.cxx @@ -31,7 +31,7 @@ icy_server_metadata_header(const char *name, const char *genre, const char *url, const char *content_type, int metaint) { - return FormatString("ICY 200 OK\r\n" + return FormatString("HTTP/1.1 200 OK\r\n" "icy-notice1:<BR>This stream requires an audio player!<BR>\r\n" /* TODO */ "icy-notice2:MPD - The music player daemon<BR>\r\n" "icy-name: %s\r\n" /* TODO */ |