Merge pull request #889 from believethehype/main

show error messages if dvm status returns error
This commit is contained in:
Vitor Pamplona 2024-05-30 15:57:23 -04:00 committed by GitHub
commit 6ecb5ecc47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -397,6 +397,8 @@ fun FeedDVM(
}
} else if (status.code == "processing") {
currentStatus = status.description
} else if (status.code == "error") {
currentStatus = status.description
}
}
}