1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-06 12:39:51 +00:00

fixed bug when due date is set to null

This commit is contained in:
benimautner 2022-04-16 00:00:51 +02:00
parent a77f561201
commit 335fde5044

View File

@ -47,7 +47,7 @@ class Task {
'created': created?.toIso8601String(),
'reminder_dates':
reminders?.map((date) => date.toIso8601String())?.toList(),
'due_date': due.toUtc()?.toIso8601String(),
'due_date': due?.toUtc()?.toIso8601String(),
'description': description,
'title': title,
'done': done ?? false,