Skip to content

Commit

Permalink
manager: fix update no response when changelog is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyHai committed Jun 1, 2024
1 parent b766b98 commit 0d1ed29
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ fun UpdateCard() {
message = stringResource(id = R.string.new_version_available).format(newVersionCode),
MaterialTheme.colorScheme.outlineVariant
) {
if (changelog.isNotEmpty()) {
if (changelog.isEmpty()) {
uriHandler.openUri(newVersionUrl)
} else {
updateDialog.showConfirm(
title = title,
content = changelog,
Expand Down

0 comments on commit 0d1ed29

Please sign in to comment.