Merge pull request #270 from Elvis5566/store_db_after_custom_statement

Fix table not found exception.
This commit is contained in:
Simon Binder 2019-12-07 21:18:07 +01:00 committed by GitHub
commit fb3eb4ee6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ class _WebDelegate extends DatabaseDelegate {
@override
Future<void> runCustom(String statement, List args) {
_db.runWithArgs(statement, args);
_storeDb();
return Future.value();
}