mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-23 15:05:51 +00:00
Merge pull request #1325 from n3oney/patch-1
fix loading custom themes with a custom LEMMY_UI_EXTRA_THEMES_FOLDER
This commit is contained in:
commit
cec22203c0
|
@ -15,7 +15,7 @@ export default async (req: Request, res: Response) => {
|
||||||
res.send("Theme must be a css file");
|
res.send("Theme must be a css file");
|
||||||
}
|
}
|
||||||
|
|
||||||
const customTheme = path.resolve(`./${extraThemesFolder}/${theme}`);
|
const customTheme = path.resolve(extraThemesFolder, theme);
|
||||||
|
|
||||||
if (existsSync(customTheme)) {
|
if (existsSync(customTheme)) {
|
||||||
res.sendFile(customTheme);
|
res.sendFile(customTheme);
|
||||||
|
|
Loading…
Reference in a new issue