Merge pull request #22 from Myzel394/hotfix-issue-21

Fix crash
This commit is contained in:
Myzel394 2024-07-22 22:34:07 +02:00 committed by GitHub
commit ce2ce6ff74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -493,7 +493,7 @@ private fun Default(
),
)
if (uiState.result is ConverterResult.Default && uiState.unitTo.factor >= BigDecimal.ZERO) {
if (uiState.result is ConverterResult.Default && uiState.unitTo.factor > BigDecimal.ZERO) {
ValueOneSummary(
modifier = with(density) {
Modifier

View File

@ -1,6 +1,6 @@
[versions]
versionCode = "20"
versionName = "0.2.0"
versionCode = "21"
versionName = "0.2.1"
androidxBrowserBrowser = "1.8.0"
androidGradlePlugin = "8.3.2"