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

View File

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