mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #39132 from nextcloud/fix/correct-exceptions-for-SAB
fix(CardDAV): catch right exception when checking for federated app classes
This commit is contained in:
commit
27f76dc522
2 changed files with 1 additions and 2 deletions
|
|
@ -107,7 +107,7 @@ class UserAddressBooks extends \Sabre\CardDAV\AddressBookHome {
|
|||
try {
|
||||
$trustedServers = \OC::$server->get(TrustedServers::class);
|
||||
$request = \OC::$server->get(IRequest::class);
|
||||
} catch (NotFoundExceptionInterface | ContainerExceptionInterface $e) {
|
||||
} catch (QueryException | NotFoundExceptionInterface | ContainerExceptionInterface $e) {
|
||||
// nothing to do, the request / trusted servers don't exist
|
||||
}
|
||||
if ($addressBook['principaluri'] === 'principals/system/system') {
|
||||
|
|
|
|||
|
|
@ -59,7 +59,6 @@ class SimpleContainer implements ArrayAccess, ContainerInterface, IContainer {
|
|||
* @psalm-template S as class-string<T>|string
|
||||
* @psalm-param S $id
|
||||
* @psalm-return (S is class-string<T> ? T : mixed)
|
||||
* @throws QueryException
|
||||
*/
|
||||
public function get(string $id) {
|
||||
return $this->query($id);
|
||||
|
|
|
|||
Loading…
Reference in a new issue