Fix broken check for import status
This commit is contained in:
parent
2fb988a7cb
commit
43b1ce6520
|
@ -1466,7 +1466,7 @@ var AIRTIME = (function(AIRTIME) {
|
|||
$.each(selected, function () {
|
||||
if (this.ingested < 0) isValid = false;
|
||||
var isImported = !$.isEmptyObject(this.file);
|
||||
if (shouldBeImported ? isImported : !isImported) {
|
||||
if (shouldBeImported ? !isImported : isImported) {
|
||||
isValid = false;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue