Properly theme folder icons that are accessed though imagePath

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

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

Loading…
Cancel
Save