Skip to content

Commit 0f76f8e

Browse files
authored
Improve error message for upload failure
1 parent e137d4f commit 0f76f8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ function uploadApp(app, options) {
843843
}
844844
showToast(app.name +" ("+app.id+") "+ ' Uploaded!', 'success');
845845
}).catch(err => {
846-
showToast('Upload failed, ' + err, 'error');
846+
showToast("Upload of" +app.name +" ("+app.id+") "+" failed", + err, 'error');
847847
});
848848
}));
849849
}

0 commit comments

Comments
 (0)