Scene calling Problems with Gledopto Pro

I having Problems with a specific LED Controller from Gledpto which is configured as

  • [Red] Dimmer: GL-C-009P

When im creating a scene over the GUI and calling the Scene (from HA or Z2M makes no difference) its sets the light correctly, when im now switching off the lamp and calling the same scene again the light wont go on again.

In the past to fix this i implemented a transition while turning off the light entity and this worked, but could get it to work with google assistant.
So i digged deeper and create manually a the scene with this json(brightness first):

{
    "scene_add": {
        "ID": 103,
        "name": "Test",
        "brightness": 58,
        "state": "ON"
    }
}

And this actually fixed my problem, i tested using it with state first and its not working anymore.

{
    "scene_add": {
        "ID": 103,
        "name": "Test",
        "state": "ON",
        "brightness": 58
    }
}

So my question is, how can i change the way the scene is stored so brightness is first. Manually creating all the scenes would be a pain.
I cannot get the current scene config, so writing a script making sure that brightness is first isnt going to work

i found this post which are not directly the same but also related to the gledpto devices: