diff --git a/controllers/preview_controller/preview_controller.go b/controllers/preview_controller/preview_controller.go index 2c32758a0547148ac35a1da11bba28c1d738e4bb..02a6bf8be1be52793654615084cd8d23ede4b289 100644 --- a/controllers/preview_controller/preview_controller.go +++ b/controllers/preview_controller/preview_controller.go @@ -38,7 +38,9 @@ func GetPreview(urlStr string, onHost string, forUserId string, atTs int64, ctx } now := util.NowMillis() - if (now - atTs) > 60000 { + atTsBk := stores.GetBucketTs(atTs) + nowBk := stores.GetBucketTs(now) + if (now - atTs) > 60000 && atTsBk != nowBk { // Because we don't have a cached preview, we'll use the current time as the preview time. // We also give a 60 second buffer so we don't cause an infinite loop (considering we're // calling ourselves), and to give a lenient opportunity for slow execution.