refactor: increased max request size for /api/settings

This commit is contained in:
Yurii
2024-10-24 05:13:29 +03:00
parent 98db62cc9e
commit 351a884685

View File

@@ -413,7 +413,7 @@ protected:
this->webServer->send(406);
return;
} else if (plain.length() > 2048) {
} else if (plain.length() > 2536) {
this->webServer->send(413);
return;
}