Skip to content

Change property name (Fix KVO notification)

Jeremy Marchand requested to merge jeremy.marchand/VLCKit:master into master

I encounter an issue with the property isMuted on VLCAudio. This property wasn't observable by KVO. The custom setter setMute: was not sending KVO message for the property isMuted change but for a property named mute that doesn't exist.

I renamed the property muted and define only a custom getter isMuted.

Merge request reports