Skip to content

Commit

Permalink
Merge pull request #63 from bobobo1618/patch-1
Browse files Browse the repository at this point in the history
Remove .toString() from disk error handling
  • Loading branch information
bpatrik authored Apr 14, 2019
2 parents 9e6247a + 6351986 commit 1bf538f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/model/threading/DiskMangerWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class DiskMangerWorker {

return resolve(directory);
} catch (err) {
return reject({error: err.toString()});
return reject({error: err});
}

});
Expand Down

0 comments on commit 1bf538f

Please sign in to comment.