Skip to content
Snippets Groups Projects
Commit 789df4d6 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #23542 from...

Merge pull request #23542 from owncloud/catch-empty-app-path-oh-we-really-should-use-exceptions-in-the-future

getAppPath can return false
parents a355e3ab 117b3e0a
No related branches found
No related tags found
No related merge requests found
...@@ -95,9 +95,12 @@ class Router implements IRouter { ...@@ -95,9 +95,12 @@ class Router implements IRouter {
if (!isset($this->routingFiles)) { if (!isset($this->routingFiles)) {
$this->routingFiles = []; $this->routingFiles = [];
foreach (\OC_APP::getEnabledApps() as $app) { foreach (\OC_APP::getEnabledApps() as $app) {
$file = \OC_App::getAppPath($app) . '/appinfo/routes.php'; $appPath = \OC_App::getAppPath($app);
if (file_exists($file)) { if($appPath !== false) {
$this->routingFiles[$app] = $file; $file = $appPath . '/appinfo/routes.php';
if (file_exists($file)) {
$this->routingFiles[$app] = $file;
}
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment