Ignore failed uploads. props koopersmith. fixes #22849
git-svn-id: https://develop.svn.wordpress.org/trunk@23162 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f2b89e27be
commit
b7a4314cbc
|
@ -150,6 +150,10 @@ window.wp = window.wp || {};
|
||||||
_.each( files, function( file ) {
|
_.each( files, function( file ) {
|
||||||
var attributes, image;
|
var attributes, image;
|
||||||
|
|
||||||
|
// Ignore failed uploads.
|
||||||
|
if ( plupload.FAILED === file.status )
|
||||||
|
return;
|
||||||
|
|
||||||
// Generate attributes for a new `Attachment` model.
|
// Generate attributes for a new `Attachment` model.
|
||||||
attributes = _.extend({
|
attributes = _.extend({
|
||||||
file: file,
|
file: file,
|
||||||
|
|
Loading…
Reference in New Issue