You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->l10n->t('server identifier isn’t configured. It is recommended if your Nextcloud instance is running on several PHP servers. Add a serverid in your configuration.'),
44
+
$linkToDoc,
45
+
);
46
+
}
47
+
48
+
if ($serverid < 0 || $serverid > 1023) {
49
+
return SetupResult::error(
50
+
$this->l10n->t('"%d" is not a valid server identifier. It must be between 0 and 1023.', [$serverid]),
51
+
$linkToDoc,
52
+
);
53
+
}
54
+
55
+
return SetupResult::success($this->l10n->t('server identifier is configured and valid.'));
0 commit comments