Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
feature/noid/sql-rewrite-0929
Maxence Lange 2019-08-26 11:21:15 -01:00
rodzic a3c441652a
commit 8eff40a221
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -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;
}