Bugfix: 'null' changelog for some track-only apps (#1425)

This commit is contained in:
Imran Remtulla
2024-03-01 19:50:04 -05:00
parent 8ec3360575
commit 26be524c6d

View File

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