Merge branch 'v0.23.x'
This commit is contained in:
commit
7dd65f3028
2
NEWS
2
NEWS
|
@ -17,6 +17,8 @@ ver 0.24 (not yet released)
|
||||||
ver 0.23.8 (not yet released)
|
ver 0.23.8 (not yet released)
|
||||||
* storage
|
* storage
|
||||||
- curl: fix crash if web server does not understand WebDAV
|
- curl: fix crash if web server does not understand WebDAV
|
||||||
|
* output
|
||||||
|
- pipewire: fix crash with PipeWire 0.3.53
|
||||||
|
|
||||||
ver 0.23.7 (2022/05/09)
|
ver 0.23.7 (2022/05/09)
|
||||||
* database
|
* database
|
||||||
|
|
|
@ -234,7 +234,8 @@ private:
|
||||||
[[maybe_unused]] uint32_t id,
|
[[maybe_unused]] uint32_t id,
|
||||||
const struct pw_stream_control *control) noexcept {
|
const struct pw_stream_control *control) noexcept {
|
||||||
auto &o = *(PipeWireOutput *)data;
|
auto &o = *(PipeWireOutput *)data;
|
||||||
if (StringIsEqual(control->name, "Channel Volumes"))
|
if (control->name != nullptr &&
|
||||||
|
StringIsEqual(control->name, "Channel Volumes"))
|
||||||
o.ControlInfo(control);
|
o.ControlInfo(control);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue