Properly theme folder icons that are accessed though imagePath (#15875)

Properly theme folder icons that are accessed though imagePath
This commit is contained in:
John Molakvoæ 2019-06-11 19:16:04 +02:00 committed by GitHub
commit 2cb0b9e56e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}