Skip to content

Commit 8039eea

Browse files
authored
Ccsync integrate / error fixes (#505)
* Revert "Ccsync integrate latest (#497)" This reverts commit 5cb7657. * ccsync tags fn added * added other attrs * fixed tags deletion ccsync problem * api_service_test update * fixed insert tags hidden error * changed from edit-task to modify-task to make sure all changes are reflected
1 parent 9e29e96 commit 8039eea

File tree

12 files changed

+548
-1209
lines changed

12 files changed

+548
-1209
lines changed

lib/app/modules/home/views/add_task_bottom_sheet_new.dart

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,13 @@ class AddTaskBottomSheet extends StatelessWidget {
321321
due: getDueDate(homeController.selectedDates).toString(),
322322
end: '',
323323
modified: 'r',
324-
tags: homeController.tags);
324+
tags: homeController.tags,
325+
start: '',
326+
wait: '',
327+
rtype: '',
328+
recur: '',
329+
depends: [],
330+
annotations: []);
325331
await homeController.taskdb.insertTask(task);
326332
homeController.namecontroller.text = '';
327333
homeController.due.value = null;

lib/app/modules/home/views/home_page_app_bar.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ class HomePageAppBar extends StatelessWidget implements PreferredSizeWidget {
157157
.homePageFetchingTasks,
158158
false);
159159
} catch (e) {
160+
debugPrint('Error refreshing tasks: $e');
160161
ScaffoldMessenger.of(context)
161162
.hideCurrentSnackBar();
162163
_showResultSnackBar(

0 commit comments

Comments
 (0)