Added IzzyOnDroid App Source

+ Bugfix for third party APK URL support
+ F-Droid apps have F-Droid as Author now
This commit is contained in:
Imran Remtulla
2022-09-16 20:24:47 -04:00
parent 42bba0f64c
commit ab4efd85ce
2 changed files with 64 additions and 4 deletions

View File

@@ -119,7 +119,7 @@ class AppsProvider with ChangeNotifier {
}
// If the picked APK comes from an origin different from the source, get user confirmation
if (apkUrl != null &&
!apkUrl.toLowerCase().startsWith(apps[id]!.app.url.toLowerCase())) {
Uri.parse(apkUrl).origin != Uri.parse(apps[id]!.app.url).origin) {
if (await showDialog(
context: context,
builder: (BuildContext ctx) {