Cancel update when cancel button is pressed.

This commit is contained in:
Robert Strouse 2023-10-19 15:25:00 -07:00
parent 51f7a0700b
commit f1386011c3
3 changed files with 2 additions and 1 deletions

View file

@ -954,6 +954,7 @@ void Web::begin() {
JsonObject sobj = sdoc.to<JsonObject>();
git.status = GIT_UPDATE_CANCELLING;
git.toJSON(sobj);
git.cancelled = true;
serializeJson(sdoc, g_content);
server.send(200, _encoding_json, g_content);
});