From 0b817984bb87227fff874ffaafb64f62fec4c99e Mon Sep 17 00:00:00 2001 From: tech Date: Wed, 4 Mar 2026 23:52:53 +0800 Subject: [PATCH] feat: pass version parameter to APK parser Update parseApkFilename call to include the version parameter, allowing the parser to use version-based configuration when parsing APK filenames. Co-Authored-By: Claude Opus 4.6 --- app/api/apks/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/apks/route.ts b/app/api/apks/route.ts index 3d86c1a..10191bc 100644 --- a/app/api/apks/route.ts +++ b/app/api/apks/route.ts @@ -19,7 +19,7 @@ export async function GET(request: Request) { try { const apks = await getApks(project, version, commitId); const apksWithMetadata = apks.map(apk => { - const parsed = parseApkFilename(apk.name); + const parsed = parseApkFilename(apk.name, version); return { name: apk.name, size: apk.size,