We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found a small error in flutter_plugins/device_calendar/lib/src/device_calendar.dart file as is missing an '&' in the if statement.
It causes all the full day events not to be added to the Calendar.
else if (event.allDay != true & ((event?.calendarId?.isEmpty ?? true) || event.start == null || event.end == null || event.start.isAfter(event.end))) {
Thanks you for creating this plugin ;)
The text was updated successfully, but these errors were encountered:
@sageata thanks, it has been publised to a new hotfix v3.0.0+3
v3.0.0+3
Sorry, something went wrong.
@Brett09, thank you!
bhl09
No branches or pull requests
I found a small error in flutter_plugins/device_calendar/lib/src/device_calendar.dart file as is missing an '&' in the if statement.
It causes all the full day events not to be added to the Calendar.
else if (event.allDay != true & ((event?.calendarId?.isEmpty ?? true) || event.start == null || event.end == null || event.start.isAfter(event.end))) {
Thanks you for creating this plugin ;)
The text was updated successfully, but these errors were encountered: