Skip to content

Commit

Permalink
audition fix
Browse files Browse the repository at this point in the history
  • Loading branch information
teeteeteeteetee committed Nov 22, 2023
1 parent d423420 commit fbed177
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/host/AUDT.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ function state(){
x = "CD Layout";
break;
default:
x = "Nothing";
x = "No file.";
}

return x;

}catch(e){
return "Nothing";
return "";
}

}
Expand All @@ -30,11 +30,11 @@ function details(){
if(app.activeDocument && app.activeDocument.displayName){
return app.activeDocument.displayName;
}else{
return "No file.";
return "";
}

}catch(e){
return "No file.";
return "";
}

}
Expand Down

0 comments on commit fbed177

Please sign in to comment.