mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-25 10:29:42 +02:00
@@ -185,9 +185,11 @@ class GitHub extends AppSource {
|
||||
Map<String, String> urlsWithDescriptions = {};
|
||||
for (var e in (jsonDecode(res.body)['items'] as List<dynamic>)) {
|
||||
urlsWithDescriptions.addAll({
|
||||
e['html_url'] as String: e['description'] != null
|
||||
? e['description'] as String
|
||||
: tr('noDescription')
|
||||
e['html_url'] as String:
|
||||
((e['archived'] == true ? '[ARCHIVED] ' : '') +
|
||||
(e['description'] != null
|
||||
? e['description'] as String
|
||||
: tr('noDescription')))
|
||||
});
|
||||
}
|
||||
return urlsWithDescriptions;
|
||||
|
Reference in New Issue
Block a user