Update DocumentAppService.cs

pull/6402/head
Yunus Emre Kalkan 5 years ago
parent f6ecd5d71e
commit 6e9b9e4521

@ -247,10 +247,7 @@ namespace Volo.Docs.Documents
return await GetDocumentAsync(documentName, project, languageCode, version);
}
//Only the latest version (dev) of the document needs to update the cache.
if (!project.LatestVersionBranchName.IsNullOrWhiteSpace() &&
document.Version == project.LatestVersionBranchName &&
document.LastCachedTime + _cacheTimeout < DateTime.Now)
if (document.LastCachedTime + _cacheTimeout < DateTime.Now)
{
return await GetDocumentAsync(documentName, project, languageCode, version, document);
}

Loading…
Cancel
Save