mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-10-20 17:53:46 +02:00
Merge pull request #2531 from ar-lex/feature/3rd-party-fdroid-per-app-author
Add per-application author parsing for third-party F-Droid repos (#2527)
This commit is contained in:
@@ -232,6 +232,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 &&
|
||||
|
Reference in New Issue
Block a user