Merge pull request #3003 from crazyserver/MOBILE-3909

MOBILE-3909 calendar: Fix event reminder migration
main
Pau Ferrer Ocaña 2021-11-22 17:14:06 +01:00 committed by GitHub
commit 91fee7d50b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ export const CALENDAR_SITE_SCHEMA: CoreSiteSchema = {
record.time = events[record.eventid].timestart - record.time;
}
return this.insertRecord(REMINDERS_TABLE, record);
return db.insertRecord(REMINDERS_TABLE, record);
}));
}
},