handlers: HandlerPageEdit: Add transaction rollback on exception

This commit is contained in:
Albert S. 2023-07-26 20:21:44 +02:00
parent aa362331a5
commit 32af0e2857
1 changed files with 1 additions and 0 deletions

View File

@ -115,6 +115,7 @@ Response HandlerPageEdit::handleRequest(PageDao &pageDao, std::string pagename,
}
catch(const DatabaseException &e)
{
this->database->rollbackTransaction();
Logger::debug() << "Error saving revision: " << e.what();
return errorResponse("Database error", "A database error occured while trying to save this revision");
}