diff --git a/changelog.md b/changelog.md index 7b8ddcb..e409939 100644 --- a/changelog.md +++ b/changelog.md @@ -1,8 +1,9 @@ ## Version 0.7.0 - - Add Cosmos Market + - Add Cosmos App Market! - Reforged the DNS CHallenge to be more user friendly. You can select your DNS provider in a list, and it will guide you through the process with the right fields to set (directly in the UI). No more env variables to set! - Fix issue with docker compose timeout healthcheck as string, inverted ports, and supports for uid:gid syntax in user - Fix for SELinux compatibility + - Fix false-negative error message on login screen when SMTP is disabled ## Version 0.6.1 - 0.6.4 - Workaround for Docker-compose race condition in Debian diff --git a/client/src/api/config.ts b/client/src/api/config.ts index 7207c35..eba10d9 100644 --- a/client/src/api/config.ts +++ b/client/src/api/config.ts @@ -34,12 +34,14 @@ function restart() { } function canSendEmail() { - return wrap(fetch('/cosmos/api/can-send-email', { + return fetch('/cosmos/api/can-send-email', { method: 'GET', headers: { 'Content-Type': 'application/json' }, - })) + }).then((response) => { + return response.json(); + }); } async function rawUpdateRoute(routeName: string, operation: Operation, newRoute?: Route): Promise { diff --git a/package.json b/package.json index 222fe61..daec6e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cosmos-server", - "version": "0.7.0-unstable14", + "version": "0.7.0", "description": "", "main": "test-server.js", "bugs": {