fix: tiny improvement of an error message

This commit is contained in:
Stefano Brilli 2021-04-11 12:31:56 +02:00
parent 01a37b0def
commit 509ce2f62f
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ export function convertAndUpload(files: File[], format: UploadFormat, titleForma
await netmdService?.upload(title, data, wireformat, updateProgressCallback);
} catch (err) {
error = err;
errorMessage = `${file.name}: Error uploading to device`;
errorMessage = `${file.name}: Error uploading to device. There might not be enough space left.`;
break;
}
}