@engine9-io/input-tools 2.0.4 → 2.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -810,7 +810,7 @@ Worker.prototype.move = async function ({ filename, target, remove = true }) {
810
810
  await fsp.rename(filename, target);
811
811
  } catch (e) {
812
812
  //it may be a filesystem issue moving between items
813
- debug('Assuming this is a filesystem crosslink error, ignoring ', e.getMessage());
813
+ debug('Assuming this is a filesystem crosslink error, ignoring ', e);
814
814
  await fsp.copyFile(filename, target);
815
815
  await fsp.unlink(filename);
816
816
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engine9-io/input-tools",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "type": "module",
5
5
  "description": "Tools for dealing with Engine9 inputs",
6
6
  "main": "index.js",