Inject base url if set before theme file url, see issue #1795

pull/2148/head
Anojh 7 years ago
parent 3de5160a7f
commit 827ea857e0

@ -274,6 +274,12 @@ namespace Ombi.Controllers
public async Task<IActionResult> GetThemeContent([FromQuery]string url)
{
var css = await _githubApi.GetThemesRawContent(url);
var ombiSettings = await OmbiSettings();
if (ombiSettings.BaseUrl != null)
{
int index = css.IndexOf("/api/");
css = css.Insert(index, ombiSettings.BaseUrl);
}
return Content(css, "text/css");
}

Loading…
Cancel
Save