Fix old error message parse logic

This commit is contained in:
Krad
2022-01-12 15:53:49 +08:00
parent 904fbb988d
commit f76758cbd2

View File

@@ -12,6 +12,8 @@ void GUIErrorLE::parse(const QString &errorMsg) {
if (errorMsg[0] == 'e' && errorMsg[1] == ' ')
{
errorMessage = errorMsg.right(errorMsg.length()-2);
} else{
errorMessage = errorMsg;
}
}