Skip to content

Commit

Permalink
Merge pull request #6044 from nextcloud/backport/6041/stable4.7
Browse files Browse the repository at this point in the history
[stable4.7] fix: default calendar needs to support VEVENTs
  • Loading branch information
st3iny authored Jun 4, 2024
2 parents 3f38623 + 81d88a6 commit 52f6d21
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/AppNavigation/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,9 @@ export default {
},
defaultCalendarOptions() {
return this.$store.state.calendars.calendars
.filter(calendar => !calendar.readOnly && !calendar.isSharedWithMe)
.filter(calendar => !calendar.readOnly
&& !calendar.isSharedWithMe
&& calendar.supportsEvents)
},
/**
* The default calendar for incoming inivitations
Expand Down

0 comments on commit 52f6d21

Please sign in to comment.