mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
fixed: issue where a partially generated index.html would be cached.
This commit is contained in:
parent
5fc7d07c76
commit
c925c0bb24
@ -74,19 +74,21 @@ private string GetIndexText()
|
||||
return _generatedContent;
|
||||
}
|
||||
|
||||
_generatedContent = _diskProvider.ReadAllText(_indexPath);
|
||||
var text = _diskProvider.ReadAllText(_indexPath);
|
||||
|
||||
var cacheBreakProvider = _cacheBreakProviderFactory();
|
||||
|
||||
_generatedContent = ReplaceRegex.Replace(_generatedContent, match =>
|
||||
text = ReplaceRegex.Replace(text, match =>
|
||||
{
|
||||
var url = cacheBreakProvider.AddCacheBreakerToPath(match.Value);
|
||||
return URL_BASE + url;
|
||||
});
|
||||
|
||||
_generatedContent = _generatedContent.Replace("API_ROOT", URL_BASE + "/api");
|
||||
_generatedContent = _generatedContent.Replace("API_KEY", API_KEY);
|
||||
_generatedContent = _generatedContent.Replace("APP_VERSION", BuildInfo.Version.ToString());
|
||||
text = text.Replace("API_ROOT", URL_BASE + "/api");
|
||||
text = text.Replace("API_KEY", API_KEY);
|
||||
text = text.Replace("APP_VERSION", BuildInfo.Version.ToString());
|
||||
|
||||
_generatedContent = text;
|
||||
|
||||
return _generatedContent;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user