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
I've noticed the following behavior while doing some changes on my miLight adapter: if I issue two consecutive REST PUT requests for the same property with the same value, the 2nd request times out, for ex. set the brightness level to 40 via REST and repeat the request.
As far as I was able to trace the problem, it comes down to the fact that the notifyPropertyChanged is not getting called and implicitly the notifyPropertyChanged of the parent Device class is also not getting invoked so the addon manager proxy is not notified.
Any ideas on this?
The text was updated successfully, but these errors were encountered:
I've noticed the following behavior while doing some changes on my miLight adapter: if I issue two consecutive REST PUT requests for the same property with the same value, the 2nd request times out, for ex. set the brightness level to 40 via REST and repeat the request.
This is the setValue code for my Property:
As far as I was able to trace the problem, it comes down to the fact that the
notifyPropertyChanged
is not getting called and implicitly thenotifyPropertyChanged
of the parent Device class is also not getting invoked so the addon manager proxy is not notified.Any ideas on this?
The text was updated successfully, but these errors were encountered: