Merge pull request #889 from believethehype/main

show error messages if dvm status returns error
pull/890/head
Vitor Pamplona 2024-05-30 15:57:23 -04:00 zatwierdzone przez GitHub
commit 6ecb5ecc47
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

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