Add UploadDialog error for NetworkError

This commit is contained in:
Ryan Huffman 2015-09-14 11:19:47 -07:00
parent a5ba86514c
commit 71456eee5e

View file

@ -134,6 +134,9 @@ void AssetUploadDialogFactory::handleUploadFinished(AssetUpload* upload, const Q
case AssetUpload::FileOpenError:
additionalError = "The file could not be opened. Please check your permissions and try again.";
break;
case AssetUpload::NetworkError:
additionalError = "The file could not be opened. Please check your network connectivity.";
break;
default:
// not handled, do not show a message box
return;