diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-11-26 12:38:26 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-11-26 12:38:26 +0100 |
commit | 8af346a84dfdca35fbac32f097f7dd425f2901cb (patch) | |
tree | 8b311b3fa9642aabba58a01d052caa41c21fbf10 /apps/files | |
parent | c749570a06fa4d24927fbd7aad13b36a8f1ff439 (diff) | |
download | nextcloud-server-8af346a84dfdca35fbac32f097f7dd425f2901cb.tar.gz nextcloud-server-8af346a84dfdca35fbac32f097f7dd425f2901cb.zip |
Don't show favicon to prevent iteration through subfolders
The codepath for generating the favicons iterates through subnodes and if one of those nodes is unavailable is throwing a 503 exception. Since these favicons don't have any use except of "making a tool for developers looking nicer" I consider it feasible to remove them.
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/appinfo/remote.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 3ba25085bad..26bef966f79 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -38,7 +38,7 @@ $server->setBaseUri($baseuri); $defaults = new OC_Defaults(); $server->addPlugin(new \Sabre\DAV\Auth\Plugin($authBackend, $defaults->getName())); $server->addPlugin(new \Sabre\DAV\Locks\Plugin($lockBackend)); -$server->addPlugin(new \Sabre\DAV\Browser\Plugin(false)); // Show something in the Browser, but no upload +$server->addPlugin(new \Sabre\DAV\Browser\Plugin(false, false)); // Show something in the Browser, but no upload $server->addPlugin(new OC_Connector_Sabre_FilesPlugin()); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); $server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav')); |