From 862e85f882ec4c9009faca68c61f60939d65eb24 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Sun, 20 Oct 2024 12:02:44 -0400 Subject: [PATCH] APKPure: Fix issue with characters in URLs (#1912) --- lib/app_sources/apkpure.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app_sources/apkpure.dart b/lib/app_sources/apkpure.dart index 7d181ab..29ce3f7 100644 --- a/lib/app_sources/apkpure.dart +++ b/lib/app_sources/apkpure.dart @@ -167,7 +167,7 @@ class APKPure extends AppSource { var res0 = await sourceRequest('$standardUrl/versions', additionalSettings); var versionLinks = await grabLinksCommon(res0, { 'skipSort': true, - 'customLinkFilterRegex': '$standardUrl/download/[^/]+\$' + 'customLinkFilterRegex': '${Uri.decodeFull(standardUrl)}/download/[^/]+\$' }); var supportedArchs = (await DeviceInfoPlugin().androidInfo).supportedAbis;