Commit a49b49cb authored by Max Kellermann's avatar Max Kellermann

decoder/wavpack: fix WVC file support

The wrong variable was used. This has been broken by commit 4eeea640 seven years ago - and nobody as noticed, d'oh!
parent f510564d
......@@ -12,6 +12,7 @@ ver 0.23 (not yet released)
- upnp: support libnpupnp instead of libupnp
* decoder
- openmpt: new plugin
- wavpack: fix WVC file support
* output
- oss: support DSD over PCM
- pipewire: new plugin
......
......@@ -521,7 +521,7 @@ wavpack_open_wvc(DecoderClient &client, const char *uri)
};
try {
return client.OpenUri(uri);
return client.OpenUri(wvc_url);
} catch (...) {
return nullptr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment