mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-29 12:20:14 +02:00
Bugfix: 'null' changelog for some track-only apps (#1425)
This commit is contained in:
@@ -400,7 +400,7 @@ class GitHub extends AppSource {
|
||||
if (version == null) {
|
||||
throw NoVersionError();
|
||||
}
|
||||
var changeLog = targetRelease['body'].toString();
|
||||
var changeLog = (targetRelease['body'] ?? '').toString();
|
||||
return APKDetails(
|
||||
version,
|
||||
targetRelease['apkUrls'] as List<MapEntry<String, String>>,
|
||||
|
Reference in New Issue
Block a user