mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 13:34:01 -06:00
Remove message explaining what caused the error
It doesn't matter to the user. Only the error message matters. Contributes to issue CURA-8609.
This commit is contained in:
parent
e7e513bb16
commit
67cae04a24
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ class CloudMaterialSync(QObject):
|
|||
return
|
||||
if job_result == UploadMaterialsJob.Result.FAILED:
|
||||
if isinstance(job_error, UploadMaterialsError):
|
||||
self.sync_all_dialog.setProperty("syncStatusText", catalog.i18nc("@text", "Error sending materials to the Digital Factory:") + " " + str(job_error))
|
||||
self.sync_all_dialog.setProperty("syncStatusText", str(job_error))
|
||||
else: # Could be "None"
|
||||
self.sync_all_dialog.setProperty("syncStatusText", catalog.i18nc("@text", "Unknown error."))
|
||||
self._export_upload_status = "error"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue