diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-09 17:32:04 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-19 11:44:01 +0200 |
commit | bd370678210b69eedf4c579033ca2b60b897bd13 (patch) | |
tree | cebd90025f20aafc1425d6435afdc2ccfa557276 /core/js | |
parent | 5503c4c8e2647ec43e2eff53438fc80ce92c60f0 (diff) | |
download | nextcloud-server-bd370678210b69eedf4c579033ca2b60b897bd13.tar.gz nextcloud-server-bd370678210b69eedf4c579033ca2b60b897bd13.zip |
Migrate InternetConnectivity check to new API
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/setupchecks.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index fe67f1ca451..a2bddefbe69 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -275,12 +275,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_ERROR }); } - if (data.serverHasInternetConnectionProblems) { - messages.push({ - msg: t('core', 'This server has no working internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the internet to enjoy all features.'), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING - }); - } if(!data.isMemcacheConfigured) { messages.push({ msg: t('core', 'No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the {linkstart}documentation ↗{linkend}.') |