Allow delete without examination

This commit is contained in:
Salanto 2021-04-14 08:54:20 +02:00 committed by GitHub
parent a62e0e82a2
commit 529a14bf1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1391,10 +1391,10 @@ void AOClient::cmdDeleteStatement(int argc, QStringList argv)
{ {
AreaData* area = server->areas[current_area]; AreaData* area = server->areas[current_area];
int c_statement = area->statement; int c_statement = area->statement;
if (area->test_rec == AreaData::TestimonyRecording::STOPPED) { if (area->testimony.size() - 1 = 0) {
sendServerMessage("Unable to delete statement. There is currently no examination running."); sendServerMessage("Unable to delete statement. No statements saved in this area.");
} }
if (c_statement > 0 && area->test_rec == AreaData::TestimonyRecording::PLAYBACK) { if (c_statement > 0 && area->testimony.size() > 2) {
area->testimony.remove(c_statement); area->testimony.remove(c_statement);
sendServerMessage("The statement with id " + QString::number(c_statement) + " has been deleted from the testimony."); sendServerMessage("The statement with id " + QString::number(c_statement) + " has been deleted from the testimony.");
} }