Hi everyone.
I have been using HTTP API to configure OpenEvse.
I don't understand if/how auto_release should work for "/limit" API.
I set limit using POST api like this:
{
    "type": "energy",
    "value": 5550,
    "auto_release": true
}
This correctly limits charge to 5.55kwh.
But when I disconnect the car - limit is not removed (confirmed by calling GET on limit api, and by re-plugging the car - it will still charge to the old limit). Thought auto_release should remove the limit when car is unplugged. I can delete it using DELETE request, but was hoping auto_release will work.
Similar API to set "override" works as expected (auto_release will remove override after car is unplugged).
Am I getting it wrong, or is this a bug?
Thanks!
Irek