!wip removed the code that should have not been there.

This commit is contained in:
Jamie Rees 2018-04-23 08:22:40 +01:00
commit 5425e4e109

View file

@ -286,12 +286,6 @@ 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");
}