Skip to content

Commit

Permalink
Merge pull request #14148 from nextcloud/backport/14147/stable30
Browse files Browse the repository at this point in the history
[stable30] fix(setupcheck): Downgrade setup check when warning opt-out is used
  • Loading branch information
nickvergessen authored Jan 17, 2025
2 parents 691b3ae + 30e33ef commit f171e29
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/SetupCheck/HighPerformanceBackend.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ public function getName(): string {

public function run(): SetupResult {
if ($this->talkConfig->getSignalingMode() === Config::SIGNALING_INTERNAL) {
return SetupResult::error(
$setupResult = SetupResult::error(...);
if ($this->talkConfig->getHideSignalingWarning()) {
$setupResult = SetupResult::warning(...);
}
return $setupResult(
$this->l->t('No High-performance backend configured - Running Nextcloud Talk without the High-performance backend only scales for very small calls (max. 2-3 participants). Please set up the High-performance backend to ensure calls with multiple participants work seamlessly.'),
'https://portal.nextcloud.com/article/Nextcloud-Talk/High-Performance-Backend/Installation-of-Nextcloud-Talk-High-Performance-Backend',
);
Expand Down

0 comments on commit f171e29

Please sign in to comment.