akamming / Garmoticz

Garmin ConnectIQ Frontend for Domoticz
4 stars 1 forks source link

Ordering of rooms #13

Open tarkan123 opened 3 months ago

tarkan123 commented 3 months ago

I had a read of the code, and am confused by how the rooms are ordered when retrieved by the app?

It is not index number of the room nor display ordering for the Domoticz user.

tarkan123 commented 3 months ago

Adding to this looks like the getplans url just needs the Order entry changed to name, so the retrieved rooms are ordered by name.

else if (action==GETROOMS) { params.put("type","plans"); params.put("order","Order"); params.put("used","true");

to

else if (action==GETROOMS) { params.put("type","plans"); params.put("order","name"); params.put("used","true");