diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-08-04 21:53:50 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-08-20 15:24:10 +0200 |
commit | c164409ee7f921a96f95e1fe95d86fe07a98963e (patch) | |
tree | 42fc9ded3b31d152242258518366da0c145b570d /core | |
parent | 1d2bc9c45ecbbb7521dbf14dba6560d925691f01 (diff) | |
download | nextcloud-server-c164409ee7f921a96f95e1fe95d86fe07a98963e.tar.gz nextcloud-server-c164409ee7f921a96f95e1fe95d86fe07a98963e.zip |
Adds a memory limit warning for console commands if the limit is below the recommended value
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'core')
-rw-r--r-- | core/js/setupchecks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index f7ee8c73c81..7dabefe9e8f 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -316,7 +316,7 @@ type: OC.SetupChecks.MESSAGE_TYPE_WARNING }); } - if (!data.isTheMemoryLimitHighEnough) { + if (!data.isMemoryLimitSufficient) { messages.push({ msg: t( 'core', |