From 8c4509f255fba9d0df5d30a62343eba7c4460537 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Sat, 23 Sep 2023 14:31:52 -0400 Subject: [PATCH] Fix major GitHub bug (#929) --- lib/app_sources/github.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/app_sources/github.dart b/lib/app_sources/github.dart index 56a31fd..700fa06 100644 --- a/lib/app_sources/github.dart +++ b/lib/app_sources/github.dart @@ -269,6 +269,8 @@ class GitHub extends AppSource { ? DateTime.parse(rel['published_at']) : null; if (dontSortReleasesList) { + releases = releases.reversed.toList(); + } else { releases.sort((a, b) { // See #478 and #534 if (a == b) {