CC-5108 : Waveform Editor UI
error check for if both tracks cannot be decoded.
This commit is contained in:
parent
f5e03db9fe
commit
69f6295553
1 changed files with 6 additions and 1 deletions
|
@ -1258,7 +1258,12 @@ var AIRTIME = (function(AIRTIME){
|
|||
|
||||
playlistEditor.stop();
|
||||
|
||||
if (json.length === 1) {
|
||||
if (json.length === 0)
|
||||
{
|
||||
id1 = undefined;
|
||||
id2 = undefined;
|
||||
}
|
||||
else if (json.length === 1) {
|
||||
|
||||
fade = json[0]["fades"][0];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue