From 9347af20908af788177c052c9f14b47700484d9b Mon Sep 17 00:00:00 2001 From: Alexey Arutyunov Date: Thu, 11 Sep 2025 23:04:38 +0200 Subject: [PATCH] Add per-application author parsing for third-party F-Droid repos (#2527) --- lib/app_sources/fdroidrepo.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/app_sources/fdroidrepo.dart b/lib/app_sources/fdroidrepo.dart index 5d9abbf..39a72c5 100644 --- a/lib/app_sources/fdroidrepo.dart +++ b/lib/app_sources/fdroidrepo.dart @@ -231,6 +231,10 @@ class FDroidRepo extends AppSource { e.querySelector('apkname') != null ).toList(); } + String? appAuthorName = foundApps[0].querySelector('author')?.innerHtml; + if (appAuthorName != null) { + authorName = appAuthorName; + } if (selectedReleases.isEmpty) { selectedReleases = releases.where((e) => e.querySelector('version')?.innerHtml == latestVersion &&