aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/setupchecks.js
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-06-28 10:54:29 +0200
committerGitHub <noreply@github.com>2019-06-28 10:54:29 +0200
commit2c449469d302c695ee03f6b572e329a005a25651 (patch)
tree866b63aef25ff33d3bd181c153d55d77bc063b27 /core/js/setupchecks.js
parentca76d13c7824367956fcf9ef812432b9c6fc9a2d (diff)
parent20afe94297ca534b9a59cd73dc90d5cb6546ac02 (diff)
downloadnextcloud-server-2c449469d302c695ee03f6b572e329a005a25651.tar.gz
nextcloud-server-2c449469d302c695ee03f6b572e329a005a25651.zip
Merge pull request #16070 from nextcloud/fix/setup-check-no-internet-no-error
Do not show a internet connectivity warning if internet access is dis…
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r--core/js/setupchecks.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index 487d833db0a..0e8aeca8455 100644
--- a/core/js/setupchecks.js
+++ b/core/js/setupchecks.js
@@ -239,7 +239,7 @@
type: OC.SetupChecks.MESSAGE_TYPE_ERROR
});
}
- if (!data.serverHasInternetConnection) {
+ 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