Add per-application author parsing for third-party F-Droid repos (#2527)

This commit is contained in:
Alexey Arutyunov
2025-09-11 23:04:38 +02:00
committed by Alexey Arutyunov
parent b294e57367
commit 9347af2090

View File

@@ -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 &&