From e1249b313cf9785613b1d352cb23fd731cc91e88 Mon Sep 17 00:00:00 2001 From: rustdreamer Date: Mon, 8 Apr 2024 23:03:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B91.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app.controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 1888265..b8f1459 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -819,7 +819,7 @@ export class AppController { ): Promise { return { "versionName": "1.3.0", - "apkUrl": `http://${process.env.LOCAL_IP}/app1.3.0.apk`, + "apkUrl": `http://${process.env.LOCAL_IP}/app.apk`, "forceUpdate": false, "whatsNew": "新版本更新" }; @@ -829,7 +829,7 @@ export class AppController { async file( @Res() res: any, ): Promise { - const file_path = join(__dirname, "./apk/app.apk") + const file_path = join(__dirname, "./apk/app1.3.0.apk") res.sendFile(file_path) }