aboutsummaryrefslogtreecommitdiff
path: root/plugins/caldav/routes.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/caldav/routes.go')
-rw-r--r--plugins/caldav/routes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/caldav/routes.go b/plugins/caldav/routes.go
index 1d052c3..f1baa1e 100644
--- a/plugins/caldav/routes.go
+++ b/plugins/caldav/routes.go
@@ -62,7 +62,7 @@ func parseObjectPath(s string) (string, error) {
err = fmt.Errorf("failed to parse path: %v", err)
return "", echo.NewHTTPError(http.StatusBadRequest, err)
}
- return string(p), nil
+ return p, nil
}
func parseTime(dateStr, timeStr string) (time.Time, error) {