Skip to content

Commit

Permalink
Merge pull request #48672 from nextcloud/jtr-settings-memory-limit-de…
Browse files Browse the repository at this point in the history
…tails

fix(settings): Add some context to the PHP memory limit error
  • Loading branch information
AndyScherzinger authored Jan 26, 2025
2 parents b99054c + 8a7b161 commit 68e7212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/settings/lib/SetupChecks/PhpMemoryLimit.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function run(): SetupResult {
if ($this->memoryInfo->isMemoryLimitSufficient()) {
return SetupResult::success(Util::humanFileSize($this->memoryInfo->getMemoryLimit()));
} else {
return SetupResult::error($this->l10n->t('The PHP memory limit is below the recommended value of %s.', Util::humanFileSize(MemoryInfo::RECOMMENDED_MEMORY_LIMIT)));
return SetupResult::error($this->l10n->t('The PHP memory limit is below the recommended value of %s. Some features or apps - including the Updater - may not function properly.', Util::humanFileSize(MemoryInfo::RECOMMENDED_MEMORY_LIMIT)));
}
}
}

0 comments on commit 68e7212

Please sign in to comment.