s3lph
b5cf1da548
Some checks failed
/ nextcloud-27 (push) Successful in 10m48s
/ nextcloud-27-app-calendar (push) Successful in 3m48s
/ nextcloud-27-app-contacts (push) Successful in 1m26s
/ nextcloud-27-app-deck (push) Successful in 3m30s
/ nextcloud-27-app-forms (push) Successful in 2m15s
/ nextcloud-27-app-gpoddersync (push) Successful in 59s
/ nextcloud-27-app-gpxpod (push) Successful in 2m47s
/ nextcloud-27-app-groupfolders (push) Successful in 1m45s
/ nextcloud-27-app-polls (push) Successful in 3m50s
/ nextcloud-27-app-previewgenerator (push) Successful in 1m1s
/ nextcloud-27-app-mail (push) Successful in 8m30s
/ nextcloud-27-app-news (push) Successful in 2m13s
/ nextcloud-27-app-nextpod (push) Successful in 1m32s
/ nextcloud-27-app-notes (push) Successful in 2m15s
/ nextcloud-27-app-notify-push (push) Successful in 4m42s
/ nextcloud-27-app-richdocuments (push) Successful in 2m39s
/ nextcloud-27-app-richdocumentscode (push) Successful in 12m11s
/ nextcloud-27-app-talk (push) Successful in 7m52s
/ nextcloud-27-app-tasks (push) Successful in 2m57s
/ nextcloud-27-app-twofactor-webauthn (push) Successful in 4m7s
/ nextcloud-27-app-user-oidc (push) Successful in 1m37s
/ nextcloud-28 (push) Successful in 16m55s
/ nextcloud-28-app-calendar (push) Successful in 4m15s
/ nextcloud-28-app-contacts (push) Successful in 1m57s
/ nextcloud-28-app-deck (push) Successful in 3m49s
/ nextcloud-28-app-forms (push) Successful in 1m39s
/ nextcloud-28-app-gpoddersync (push) Successful in 1m9s
/ nextcloud-28-app-gpxpod (push) Successful in 3m22s
/ nextcloud-28-app-groupfolders (push) Successful in 1m58s
/ nextcloud-28-app-polls (push) Successful in 3m48s
/ nextcloud-28-app-previewgenerator (push) Successful in 1m4s
/ nextcloud-28-app-mail (push) Successful in 6m36s
/ nextcloud-28-app-news (push) Failing after 40s
/ nextcloud-28-app-nextpod (push) Successful in 1m35s
/ nextcloud-28-app-notes (push) Successful in 2m15s
/ nextcloud-28-app-notify-push (push) Successful in 4m7s
/ nextcloud-28-app-richdocuments (push) Successful in 3m2s
/ nextcloud-28-app-richdocumentscode (push) Successful in 6m24s
/ nextcloud-28-app-talk (push) Successful in 4m30s
/ nextcloud-28-app-tasks (push) Successful in 1m7s
/ nextcloud-28-app-twofactor-webauthn (push) Successful in 1m33s
/ nextcloud-28-app-user-oidc (push) Successful in 52s
33 lines
1.7 KiB
Diff
33 lines
1.7 KiB
Diff
diff -3ur a/nextcloud/apps/settings/templates/settings/personal/personal.info.php b/nextcloud/apps/settings/templates/settings/personal/personal.info.php
|
|
--- a/nextcloud/apps/settings/templates/settings/personal/personal.info.php 2022-10-21 16:18:20.730871392 +0200
|
|
+++ b/nextcloud/apps/settings/templates/settings/personal/personal.info.php 2022-10-21 16:23:38.133437330 +0200
|
|
@@ -35,13 +35,6 @@
|
|
'vue-settings-personal-info',
|
|
]);
|
|
?>
|
|
-<?php if (!$_['isFairUseOfFreePushService']) : ?>
|
|
- <div class="section">
|
|
- <div class="warning">
|
|
- <?php p($l->t('This community release of Nextcloud is unsupported and instant notifications are unavailable.')); ?>
|
|
- </div>
|
|
- </div>
|
|
-<?php endif; ?>
|
|
|
|
<div id="personal-settings" data-federation-enabled="<?php p($_['federationEnabled'] ? 'true' : 'false') ?>"
|
|
data-lookup-server-upload-enabled="<?php p($_['lookupServerUploadEnabled'] ? 'true' : 'false') ?>">
|
|
diff -3ur a/nextcloud/core/Controller/LoginController.php b/nextcloud/core/Controller/LoginController.php
|
|
--- a/nextcloud/core/Controller/LoginController.php 2022-10-21 16:18:20.610870426 +0200
|
|
+++ b/nextcloud/core/Controller/LoginController.php 2022-10-21 16:19:52.921615072 +0200
|
|
@@ -147,12 +147,6 @@
|
|
}
|
|
|
|
$loginMessages = $this->session->get('loginMessages');
|
|
- if (!$this->manager->isFairUseOfFreePushService()) {
|
|
- if (!is_array($loginMessages)) {
|
|
- $loginMessages = [[], []];
|
|
- }
|
|
- $loginMessages[1][] = $this->l10n->t('This community release of Nextcloud is unsupported and push notifications are limited.');
|
|
- }
|
|
if (is_array($loginMessages)) {
|
|
[$errors, $messages] = $loginMessages;
|
|
$this->initialStateService->provideInitialState('core', 'loginMessages', $messages);
|