Subject: | Properties don't automatically use their declared types for their return value |
on a property like this one :
dbus_property('CanPlay', 'bool', 'read', 'org.mpris.MediaPlayer2.Player');
I have to force a type on the returned value with dbus_boolean() to make
sure the returned value is "typed" as boolean in spite of declaring the
property as boolean.
It would be nice if the declared type could be used automatically.