Automated changelog update [skip ci]

This commit is contained in:
Alex Unger
2020-01-20 15:48:07 +00:00
parent 2a6bd47bec
commit 85620765f3

View File

@@ -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