Browse Source

Only return link to themed icon if file exists

Signed-off-by: Julius Härtl <jus@bitgrid.net>
pull/16095/head
Julius Härtl 7 years ago
parent
commit
ec6ce43053
No known key found for this signature in database GPG Key ID: 4C614C6ED2CDE6DF
  1. 2
      apps/theming/lib/ThemingDefaults.php

2
apps/theming/lib/ThemingDefaults.php

@ -349,7 +349,7 @@ class ThemingDefaults extends \OC_Defaults {
} catch (AppPathNotFoundException $e) {}
return $this->urlGenerator->linkToRoute('theming.Theming.getManifest') . '?v=' . $cacheBusterValue;
}
if (strpos($image, 'filetypes/') === 0) {
if (strpos($image, 'filetypes/') === 0 && file_exists(\OC::$SERVERROOT . '/core/img/' . $image )) {
return $this->urlGenerator->linkToRoute('theming.Icon.getThemedIcon', ['app' => $app, 'image' => $image]);
}
return false;

Loading…
Cancel
Save