Skip to content

Commit d074413

Browse files
authored
Merge pull request #1558 from xxfogs/master
Use the user-specified CalDAV server URL pathname for the task move destination URL base
2 parents 74fdd48 + 76d5054 commit d074413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/Services/CalDAV/Core.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ public class Services.CalDAV.Core : GLib.Object {
687687
string username = item.project.source.caldav_data.username;
688688

689689
var url = "%s/calendars/%s/%s/%s".printf (item.project.source.caldav_data.server_url, username, item.project.id, item.ics);
690-
var destination = "/remote.php/dav/calendars/%s/%s/%s".printf (username, project_id, item.ics);
690+
var destination = "%s/calendars/%s/%s/%s".printf (item.project.source.caldav_data.server_url, username, project_id, item.ics);
691691

692692
var message = new Soup.Message ("MOVE", url);
693693
message.request_headers.append ("Authorization", "Basic %s".printf (item.project.source.caldav_data.credentials));

0 commit comments

Comments
 (0)