Merge pull request #2588 from nextcloud/theming-check-empty

Check if image files for theming are empty
This commit is contained in:
Björn Schießle 2016-12-09 15:57:44 +01:00 committed by GitHub
commit d10be51d40
2 changed files with 4 additions and 1 deletions

View File

@ -94,6 +94,9 @@ class IconController extends Controller {
$iconFile = $this->imageManager->getCachedImage("icon-" . $app . '-' . str_replace("/","_",$image));
} catch (NotFoundException $exception) {
$icon = $this->iconBuilder->colorSvg($app, $image);
if ($icon === false || $icon === "") {
return new NotFoundResponse();
}
$iconFile = $this->imageManager->setCachedImage("icon-" . $app . '-' . str_replace("/","_",$image), $icon);
}
if ($iconFile !== false) {

View File

@ -177,7 +177,7 @@ class IconBuilder {
return false;
}
$svg = file_get_contents($imageFile);
if ($svg !== false) {
if ($svg !== false && $svg !== "") {
$color = $this->util->elementColor($this->themingDefaults->getMailHeaderColor());
$svg = $this->util->colorizeSvg($svg, $color);
return $svg;