Merge pull request #705 from nextcloud/bugfix/704/php70

compat php70
pull/709/head
Maxence Lange 2019-08-26 15:14:05 -01:00 zatwierdzone przez GitHub
commit afb91cd91f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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;
}