Allow adding sellers during sale phase

This commit is contained in:
Martin Brodbeck 2018-10-01 12:05:21 +02:00
parent 43faf05006
commit fe7ddc5cf2
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ unsigned int Database::storeSellers(std::vector<std::unique_ptr<Seller>>& seller
rollbackTransaction();
std::string errMsg(sqlite3_errmsg(db_));
sqlite3_finalize(stmt);
sqlite3_ throw std::runtime_error(errMsg);
throw std::runtime_error(errMsg);
}
++count;
sqlite3_finalize(stmt);