From 3674742c2722b5cf3b3599d9afb48ef464cc60e2 Mon Sep 17 00:00:00 2001 From: xkeyC <3334969096@qq.com> Date: Wed, 7 Feb 2024 23:26:14 +0800 Subject: [PATCH] fix --- lib/api/api.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/api.dart b/lib/api/api.dart index b1be573..1f931aa 100644 --- a/lib/api/api.dart +++ b/lib/api/api.dart @@ -34,7 +34,7 @@ class Api { static Future> getAppReleaseDataByVersionName( String version) async { final r = await RSHttp.getText( - "${URLConf.gitlabApiPath}/repos/SCToolBox/Release/releases/tags/$version"); + "${URLConf.gitlabApiPath}repos/SCToolBox/Release/releases/tags/$version"); return json.decode(r); }