Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 1d65e4dd authored by Georg Ehrke's avatar Georg Ehrke Committed by GitHub
Browse files

Merge pull request #2508 from nextcloud/backport/2496/stable2.0

[stable2.0] Fix regression in public sharing page
parents 9db9af39 8678f9a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -457,7 +457,7 @@ const actions = {
	 * @returns {Promise<Object[]>}
	 */
	async getPublicCalendars({ commit, state, getters }, { tokens }) {
		const calendars = findPublicCalendarsByTokens(tokens)
		const calendars = await findPublicCalendarsByTokens(tokens)
		const calendarObjects = []
		for (const davCalendar of calendars) {
			const calendar = mapDavCollectionToCalendar(davCalendar)
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@
					:is-public="!isAuthenticatedUser"
					:loading-calendars="loadingCalendars" />
				<CalendarListNew
					v-if="!loadingCalendars"
					v-if="!loadingCalendars && isAuthenticatedUser"
					:disabled="loadingCalendars" />
			</template>
			<!-- Settings and import -->