Flush bytes after 4 letter commands

This commit is contained in:
alesapin 2021-11-23 13:31:10 +03:00
parent 203477c02a
commit 16f034fe4c

View File

@ -493,6 +493,7 @@ bool KeeperTCPHandler::tryExecuteFourLetterWordCmd(int32_t command)
{
String res = command_ptr->run();
out->write(res.data(), res.size());
out->next();
}
catch (...)
{