diff --git a/CHANGELOG.md b/CHANGELOG.md index 376bfd1c4..29ec79993 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,9 +13,9 @@ The following sections list the changes for 1.3.0. * Bugfix #14: Fix serving static assets Ocis-hello used "/" as root. adding another / caused the static middleware to always fail - stripping that prefix. All requests will return 404. setting root to "" in the `ocis-hello` - flag does not work because chi reports that routes need to start with a /. - `path.Clean(root+"/")` would yield "" for root="/" + stripping that prefix. All requests will return 404. Setting root to `""` in the `ocis-hello` + flag does not work because Chi reports that routes need to start with `/`. + `path.Clean(root+"/")` would yield `""` for `root="/"`. https://github.com/owncloud/ocis-pkg/pull/14