Merge tag 'v0.22.3' into master

release v0.22.3
This commit is contained in:
Max Kellermann
2020-11-06 16:14:46 +01:00
2 changed files with 4 additions and 2 deletions

4
NEWS
View File

@@ -2,9 +2,11 @@ ver 0.23 (not yet released)
* protocol
- new command "getvol"
ver 0.22.3 (not yet released)
ver 0.22.3 (2020/11/06)
* playlist
- add option "as_directory", making CUE file expansion optional
* storage
- curl: fix crash bug
* filter
- fix garbage after "Audio format not supported by filter" message
- ffmpeg: support planar output

View File

@@ -80,7 +80,7 @@ std::string_view
CurlStorage::MapToRelativeUTF8(std::string_view uri_utf8) const noexcept
{
return PathTraitsUTF8::Relative(base,
CurlUnescape(uri_utf8).c_str());
CurlUnescape(uri_utf8));
}
class BlockingHttpRequest : protected CurlResponseHandler {