fix: incorrect dynamic share url

This commit is contained in:
bggRGjQaUbCoE
2024-09-18 11:59:02 +08:00
parent 44159a59fb
commit 393916a2c7
2 changed files with 2 additions and 1 deletions

View File

@@ -169,7 +169,7 @@ class MorePanel extends StatelessWidget {
onTap: () async {
Get.back();
var result = await Share.share(
'${HttpString.baseUrl}/dynamic/${item.idStr} UP主: ${item.modules.moduleAuthor.name}')
'${HttpString.dynamicShareBaseUrl}/${item.idStr}')
.whenComplete(() {});
return result;
},