diff --git a/changelog/unreleased/fix-ocs-config-values.md b/changelog/unreleased/fix-ocs-config-values.md new file mode 100644 index 0000000000..29144b234a --- /dev/null +++ b/changelog/unreleased/fix-ocs-config-values.md @@ -0,0 +1,6 @@ +Bugfix: ensure the same data on /ocs/v?.php/config like oC10 + +We've fixed the returned values on the /ocs/v?.php/config endpoints, +so that they now return the same values as an oC10 would do. + +https://github.com/owncloud/ocis/pull/3113 diff --git a/storage/pkg/command/frontend.go b/storage/pkg/command/frontend.go index 1010b13dc5..06be385308 100644 --- a/storage/pkg/command/frontend.go +++ b/storage/pkg/command/frontend.go @@ -215,10 +215,10 @@ func frontendConfigFromStruct(c *cli.Context, cfg *config.Config, filesCfg map[s }, }, "config": map[string]interface{}{ - "version": "1.8", - "website": "reva", + "version": "1.7", + "website": "ownCloud", "host": cfg.Reva.Frontend.PublicURL, - "contact": "admin@localhost", + "contact": "", "ssl": "false", }, "default_upload_protocol": cfg.Reva.DefaultUploadProtocol,