diff --git a/lib/Service/PushService.php b/lib/Service/PushService.php index 61b52f83..ba27646d 100644 --- a/lib/Service/PushService.php +++ b/lib/Service/PushService.php @@ -114,7 +114,9 @@ class PushService { try { $pushHelper = $this->pushManager->getPushHelper(); $details = $this->detailsService->generateDetailsFromStream($stream); - } catch (PushInstallException | SocialAppConfigException $e) { + } catch (PushInstallException $e) { + return; + } catch (SocialAppConfigException $e) { return; }