summaryrefslogtreecommitdiffstats
path: root/lib/Service
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-08-26 11:21:15 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-08-26 11:21:15 -0100
commit8eff40a2215bc55822cdb90b7fa1642186362a34 (patch)
tree132015bf4967ed438931a9a684edecac783be8d0 /lib/Service
parenta3c441652a267aeab934a765a2b5d50438ae14f7 (diff)
compat php70
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Service')
-rw-r--r--lib/Service/PushService.php4
1 files changed, 3 insertions, 1 deletions
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;
}