Mark Jan Bonne Kordon

Results 11 comments of Mark Jan Bonne Kordon

Is it necessary to get additional info when listing bridges? If yes, maybe it's a posibility to give the bridge 1-2 seconds to respond and simply return the list of...

Yes, I see. Of course. The problem is I'm thinking about shipping node-hue-api in an Electron app. So I don't really have control over other users bridges. My only option...

It does seem to work. Even though the request takes about 10 sec per non-responding bridge: ``` [ { "name":"Philips hue", "ipaddress":"192.168.1.227", "modelid":"BSB002", "swversion":"1937045000" }, { "error":{ "message":"Problem connecting to...

It seems that my issue is a cornercase. But at the same time it should be handled somehow. I think the current solution is a good compromise. We can leave...

@RicoSuter If I turn of the generation of ? they are all ! which is also not intended. I think @jgilchrist have some great points regarding the issue.

@Liwoj A thumbs up on #2948 - seems like the feature you are requesting?

`[FromBody]` won't work with `GET`. This is still an issue and should be a setting.

If I understand your question correct, you want to ensure that the month param is always two digits. This could be accomplished using regex: ``` [GET("{year:int:length(4)}-{month(^\d{2}$)}")] public ActionResult Days(int year,...

For anyone interested. I had this issue as well, until I realised I needed to use `pnpm` instead of `npm`. So in my case I would use `pnpm` to install...