diff --git a/lib/Push.php b/lib/Push.php index bf89e1e07..dbfe4b494 100644 --- a/lib/Push.php +++ b/lib/Push.php @@ -245,6 +245,8 @@ public function filterDeviceList(array $devices, string $app): array { public function pushToDevice(int $id, INotification $notification, ?OutputInterface $output = null): void { if (!$this->config->getSystemValueBool('has_internet_connection', true)) { + $this->printInfo('Internet connectivity is disabled in configuration file - no push notifications will be sent'); + return; }