Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FSO.FolderExists does not throw correct exception #10

Open
bobbystacksmash opened this issue Nov 16, 2018 · 0 comments
Open

FSO.FolderExists does not throw correct exception #10

bobbystacksmash opened this issue Nov 16, 2018 · 0 comments

Comments

@bobbystacksmash
Copy link
Owner

This snippet of code is part of the FSO.FolderExists() method which is not throwing the correct WINAPI exception when the dirpath is not a valid type - it throws a node.js exception about .toString() not being defined for dirpath.

if (typeof dirpath !== "string") {
  try {
    dirpath = dirpath.toString();
  }
  catch (e) {
    throw e;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant