From 1ddf2869a64feea4642a2e4becc6569d8cbbd296 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Tue, 6 Aug 2024 16:47:38 -0400 Subject: [PATCH] Yet another APKPure bugfix (last one) --- lib/app_sources/apkpure.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/app_sources/apkpure.dart b/lib/app_sources/apkpure.dart index 3048aa9..3fe3237 100644 --- a/lib/app_sources/apkpure.dart +++ b/lib/app_sources/apkpure.dart @@ -97,6 +97,7 @@ class APKPure extends AppSource { List architectures = architectureString .split(',') .map((e) => e.trim()) + .where((e) => e.isNotEmpty) .toList(); // Only take the first APK for each architecture, ignore others for now, for simplicity // Unclear why there can even be multiple APKs for the same version and arch