Merge pull request #16095 from nextcloud/bugfix/theming-filetypes
Only return link to themed icon if file exists
This commit is contained in:
commit
810e5f4864
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue