MOBILE-4317 calendar: Fix updateAllSitesEventReminders

main
Dani Palou 2023-04-20 13:27:45 +02:00
parent e18f392482
commit 3d0a9441f4
1 changed files with 1 additions and 1 deletions

View File

@ -1392,7 +1392,7 @@ export class AddonCalendarProvider {
const siteIds = await CoreSites.getSitesIds();
await Promise.all(siteIds.map((siteId: string) => async () => {
await Promise.all(siteIds.map(async (siteId) => {
// Check if calendar is disabled for the site.
const disabled = await this.isDisabled(siteId);