mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 04:12:59 +00:00
Exclude tasks without an due date from the iCal export (fixes #1745)
This commit is contained in:
@@ -26,7 +26,7 @@ class CalendarApiController extends BaseApiController
|
||||
|
||||
foreach ($events as $event)
|
||||
{
|
||||
if (!isset($event['start']))
|
||||
if (!isset($event['start']) || empty($event['start']))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user