diff options
author | Robin Appelman <robin@icewind.nl> | 2016-06-20 22:11:05 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-06-20 22:11:05 +0200 |
commit | bb465a7ab45c897291deb27cf4329b06cc4857eb (patch) | |
tree | c1a85124d1348205e8fc1c19172f2fce84c7feb7 /apps/files_sharing/lib/AppInfo | |
parent | dcee5284828bea459e69448ac5f3363a584cab73 (diff) | |
download | nextcloud-server-bb465a7ab45c897291deb27cf4329b06cc4857eb.tar.gz nextcloud-server-bb465a7ab45c897291deb27cf4329b06cc4857eb.zip |
Catch exceptions while creating shared mounts (#25077)
Diffstat (limited to 'apps/files_sharing/lib/AppInfo')
-rw-r--r-- | apps/files_sharing/lib/AppInfo/Application.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/AppInfo/Application.php b/apps/files_sharing/lib/AppInfo/Application.php index 2907ceaaea2..fda16c7acac 100644 --- a/apps/files_sharing/lib/AppInfo/Application.php +++ b/apps/files_sharing/lib/AppInfo/Application.php @@ -115,7 +115,8 @@ class Application extends App { $server = $c->query('ServerContainer'); return new MountProvider( $server->getConfig(), - $server->getShareManager() + $server->getShareManager(), + $server->getLogger() ); }); |