From 05372924a0f49ec391b7b7f1b2b83cf066373ee0 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Thu, 11 Jan 2024 21:16:25 -0500 Subject: [PATCH] F-Droid bugfix (#1264) --- lib/app_sources/fdroid.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app_sources/fdroid.dart b/lib/app_sources/fdroid.dart index a4668df..fb40a90 100644 --- a/lib/app_sources/fdroid.dart +++ b/lib/app_sources/fdroid.dart @@ -108,7 +108,7 @@ class FDroid extends AppSource { } catch (e) { // Fail silently } - if ((details.changeLog?.length ?? 0) > 1000) { + if ((details.changeLog?.length ?? 0) > 2048) { details.changeLog = '${details.changeLog!.substring(0, 2048)}...'; } }