File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -574,7 +574,7 @@ public class Services.CalDAV.CalDAVClient : Services.CalDAV.WebDAVClient {
574574 }
575575
576576 public async HttpResponse add_item (Objects.Item item, bool update = false) {
577- var url = update ? item.ical_url : GLib.Path.build_path(" / " , item.project.calendar_url, " % s. ics" .printf (item.id));
577+ var url = update ? item.ical_url : GLib.Path.build_path (" / " , item.project.calendar_url, " % s. ics" .printf (item.id));
578578 var body = item.to_vtodo ();
579579
580580 var expected = update ? new Soup.Status[]{ Soup.Status.NO_CONTENT }
@@ -614,7 +614,7 @@ public class Services.CalDAV.CalDAVClient : Services.CalDAV.WebDAVClient {
614614
615615
616616 public async HttpResponse move_item (Objects.Item item, Objects.Project destination_project) {
617- var destination = GLib.Path.build_path(" / " , destination_project.calendar_url, " % s. ics" .printf (item.id));
617+ var destination = GLib.Path.build_path (" / " , destination_project.calendar_url, " % s. ics" .printf (item.id));
618618
619619 var headers = new HashTable<string,string> (str_hash, str_equal);
620620 headers.insert (" Destination " , destination);
@@ -683,4 +683,4 @@ public class Services.CalDAV.CalDAVClient : Services.CalDAV.WebDAVClient {
683683
684684 return resourcetype.get_elements_by_tag_name (" deleted- calendar" ).length > 0;
685685 }
686- }
686+ }
You can’t perform that action at this time.
0 commit comments