fix: remove cache from repository API

This commit is contained in:
tdurieux
2021-09-12 00:55:11 +02:00
parent 1469ebb092
commit 9550878d8f

View File

@@ -48,7 +48,6 @@ router.get(
const repo = await getRepo(req, res);
if (!repo) return;
try {
// ache the file for 6 hours
res.header("Cache-Control", "no-cache");
res.json(await repo.anonymizedFiles({ includeSha: false }));
@@ -122,7 +121,8 @@ router.get(
!!config.ENABLE_DOWNLOAD &&
repo.source.type == "GitHubDownload";
}
res.header("Cache-Control", "no-cache");
res.json({
url: redirectURL,
download,