diff --git a/.gitmodules b/.gitmodules index e25978215..980610526 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "app/console"] path = app/console url = https://github.com/appwrite/console - branch = 1.5.x + branch = 4.0.0 diff --git a/app/console b/app/console index 4769c5018..c1e6264eb 160000 --- a/app/console +++ b/app/console @@ -1 +1 @@ -Subproject commit 4769c5018979b3f00393ce3015ff8bf69d9c1657 +Subproject commit c1e6264eb2f99a7c2fb07d91cc95c14b83ad75d8 diff --git a/app/controllers/api/messaging.php b/app/controllers/api/messaging.php index 549bcc2e3..eba6dfe8c 100644 --- a/app/controllers/api/messaging.php +++ b/app/controllers/api/messaging.php @@ -2935,13 +2935,8 @@ App::post('/v1/messaging/messages/push') } $host = App::getEnv('_APP_DOMAIN', 'localhost'); - $domain = new Domain(\parse_url($host, PHP_URL_HOST)); $protocol = App::getEnv('_APP_OPTIONS_FORCE_HTTPS') === 'disabled' ? 'http' : 'https'; - if (!$domain->isKnown()) { - throw new Exception(Exception::STORAGE_FILE_NOT_PUBLIC); - } - $scheduleTime = $currentScheduledAt ?? $scheduledAt; if (!\is_null($scheduleTime)) { $expiry = (new \DateTime($scheduleTime))->add(new \DateInterval('P15D'))->format('U'); @@ -3777,13 +3772,8 @@ App::patch('/v1/messaging/messages/push/:messageId') } $host = App::getEnv('_APP_DOMAIN', 'localhost'); - $domain = new Domain(\parse_url($host, PHP_URL_HOST)); $protocol = App::getEnv('_APP_OPTIONS_FORCE_HTTPS') === 'disabled' ? 'http' : 'https'; - if (!$domain->isKnown()) { - throw new Exception(Exception::STORAGE_FILE_NOT_PUBLIC); - } - $scheduleTime = $currentScheduledAt ?? $scheduledAt; if (!\is_null($scheduleTime)) { $expiry = (new \DateTime($scheduleTime))->add(new \DateInterval('P15D'))->format('U');