From 7956765c121a0d374d898294451f9fdd23d038d5 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 18 Sep 2014 23:18:07 +0200 Subject: [PATCH] Match more URL fragments Fixes https://github.com/owncloud/core/pull/11009#issuecomment-56103341 --- apps/files/appinfo/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php index a99b5de3af..96790a0485 100644 --- a/apps/files/appinfo/routes.php +++ b/apps/files/appinfo/routes.php @@ -10,7 +10,7 @@ namespace OCA\Files\Appinfo; $application = new Application(); $application->registerRoutes($this, array('routes' => array( - array('name' => 'API#getThumbnail', 'url' => '/api/v1/thumbnail/{x}/{y}/{file}', 'verb' => 'GET'), + array('name' => 'API#getThumbnail', 'url' => '/api/v1/thumbnail/{x}/{y}/{file}', 'verb' => 'GET', 'requirements' => array('file' => '.+')), )));