mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
fix: missing async
This commit is contained in:
@@ -12,7 +12,7 @@ export class MySQLPredicateRepository implements PredicateRepositoryInterface {
|
||||
private ormRepository: Repository<Predicate>,
|
||||
) {}
|
||||
|
||||
save(predicate: Predicate): Promise<Predicate> {
|
||||
async save(predicate: Predicate): Promise<Predicate> {
|
||||
return this.ormRepository.save(predicate)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user