Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
fixed checkDuMEPath()
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-Duduf committed Mar 16, 2020
1 parent 67d397f commit 74a92ef
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src-ae/DuME.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,8 @@

function checkDuMEPath( pathToBin )
{
if (typeof path === 'undefined') path = settings.data.dumePath;

var DuMEFile = new File( path );
pathToBin = def(pathToBin, settings.data.dumePath);
var DuMEFile = new File( pathToBin );
return DuMEFile.exists;
}

Expand Down

0 comments on commit 74a92ef

Please sign in to comment.