Skip to content

Commit

Permalink
fix: Pre-releases changelog being shown (#1767)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAabedKhan committed Mar 17, 2024
1 parent ab13895 commit add49e1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/services/github_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ class GithubAPI {
updates++;
}
for (int i = 1; i < updates; i++) {
if (response.data[i]['prerelease']) {
continue;
}
releases.update(
'body',
(value) =>
Expand Down

0 comments on commit add49e1

Please sign in to comment.