You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, volume metadata would still be sent even if configured to ignore volume control.
Now, no volume metadata is sent if configured to ignore volume control.
I believe this commit broke it by adding a check that config.ignore_volume_control == 0around the code which outputs volume metadata. You can see that inside this conditional block, there is a check that config.ignore_volume_control == 1, which cannot be true as it is in a block which asserted it was 0!
The text was updated successfully, but these errors were encountered:
Fixes an error whereby the 'pvol' volume metadata was no longer sent if Shairport Sync was configured to ignore volume control information coming from the audio source. Addresses issue #903.
Fixes a compilation error if including the MQTT client.
Previously, volume metadata would still be sent even if configured to ignore volume control.
Now, no volume metadata is sent if configured to ignore volume control.
I believe this commit broke it by adding a check that
config.ignore_volume_control == 0
around the code which outputs volume metadata. You can see that inside this conditional block, there is a check thatconfig.ignore_volume_control == 1
, which cannot be true as it is in a block which asserted it was0
!The text was updated successfully, but these errors were encountered: