Loading src/store/calendars.js +7 −3 Original line number Diff line number Diff line Loading @@ -688,9 +688,13 @@ const actions = { const calendarObjects = [] const calendarObjectIds = [] for (const r of response.concat(responseTodo)) { try { const calendarObject = mapCDavObjectToCalendarObject(r, calendar.id) calendarObjects.push(calendarObject) calendarObjectIds.push(calendarObject.id) } catch (e) { console.error('could not convert calendar object', e) } } context.commit('appendCalendarObjects', { calendarObjects }) Loading Loading
src/store/calendars.js +7 −3 Original line number Diff line number Diff line Loading @@ -688,9 +688,13 @@ const actions = { const calendarObjects = [] const calendarObjectIds = [] for (const r of response.concat(responseTodo)) { try { const calendarObject = mapCDavObjectToCalendarObject(r, calendar.id) calendarObjects.push(calendarObject) calendarObjectIds.push(calendarObject.id) } catch (e) { console.error('could not convert calendar object', e) } } context.commit('appendCalendarObjects', { calendarObjects }) Loading