mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 15:12:07 +00:00
Merge pull request #2680 from overleaf/jpa-fix-cache-bust
[frontend] fix cache busting: add timestamp unless build id is present GitOrigin-RevId: ece768cb33af47182b920c894636d686dba02c3b
This commit is contained in:
parent
1749ab7099
commit
5527cab2a2
1 changed files with 2 additions and 2 deletions
|
@ -455,7 +455,7 @@ define([
|
|||
)
|
||||
}
|
||||
// check if we need to bust cache (build id is unique so don't need it in that case)
|
||||
if (fileByPath['output.pdf'] && fileByPath['output.pdf'].build) {
|
||||
if (!(fileByPath['output.pdf'] && fileByPath['output.pdf'].build)) {
|
||||
qs.cache_bust = `${Date.now()}`
|
||||
}
|
||||
// convert the qs hash into a query string and append it
|
||||
|
@ -538,7 +538,7 @@ define([
|
|||
opts.url = `/project/${$scope.project_id}/output/${name}`
|
||||
}
|
||||
// check if we need to bust cache (build id is unique so don't need it in that case)
|
||||
if (file && file.build) {
|
||||
if (!(file && file.build)) {
|
||||
opts.params.cache_bust = `${Date.now()}`
|
||||
}
|
||||
opts.url = buildPdfDownloadUrl(options.pdfDownloadDomain, opts.url)
|
||||
|
|
Loading…
Add table
Reference in a new issue