From 26be524c6dbd0ebb943d41ccd8220ff328c2aedb Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Fri, 1 Mar 2024 19:50:04 -0500 Subject: [PATCH] Bugfix: 'null' changelog for some track-only apps (#1425) --- lib/app_sources/github.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app_sources/github.dart b/lib/app_sources/github.dart index 151e159..251a118 100644 --- a/lib/app_sources/github.dart +++ b/lib/app_sources/github.dart @@ -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>,