From 395219d0cb18a117b45fc7196e6494c9693ca239 Mon Sep 17 00:00:00 2001 From: DecDuck Date: Sun, 20 Oct 2024 20:38:28 +1100 Subject: [PATCH] patch for no version check in manifest generation --- server/internal/downloads/manifest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/internal/downloads/manifest.ts b/server/internal/downloads/manifest.ts index 02f92fb..18c9f59 100644 --- a/server/internal/downloads/manifest.ts +++ b/server/internal/downloads/manifest.ts @@ -68,7 +68,7 @@ class ManifestGenerator { take: 1, }) )[0]; - if(!currentVersion) return {}; + if(!currentVersion) return undefined; versions.push(currentVersion); if (!currentVersion.delta) break; }