fix runCustom args in encrypted moor

This commit is contained in:
David 2020-03-08 20:15:22 +01:00
parent b2285e04ef
commit 25facaaf18
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ mixin _SqfliteExecutor on QueryDelegate {
@override
Future<void> runCustom(String statement, List args) {
return db.execute(statement);
return db.execute(statement, args);
}
@override