From fa4ed7c95cb09bcde8e9c08b684ddbe4128f272a Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 9 Apr 2018 01:53:25 +0200 Subject: [PATCH] light.hue.on/off wants an array --- platypush/backend/http/static/js/light.hue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/backend/http/static/js/light.hue.js b/platypush/backend/http/static/js/light.hue.js index 4158977d4..d1d8a96bb 100644 --- a/platypush/backend/http/static/js/light.hue.js +++ b/platypush/backend/http/static/js/light.hue.js @@ -339,7 +339,7 @@ $(document).ready(function() { args: {} }; - args['args'][key] = name; + args['args'][key] = [name]; execute(args, function() { $lightItem.data('on', !isOn); refreshStatus();