Skip to content

Commit

Permalink
Merge pull request #49 from operandom/master
Browse files Browse the repository at this point in the history
Debug "HRESULT : 0xC00CE508" exception on Win8
  • Loading branch information
mikaelbr committed Mar 19, 2015
2 parents 9232c47 + 4f4549e commit 2a42941
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ module.exports.mapToWin8 = function (options){
}

if(options.message){
options.m = options.message;
// Remove escape char to debug "HRESULT : 0xC00CE508" exception
options.m = options.message.replace(/\x1b/g, '');
delete options.message;
}

Expand Down

0 comments on commit 2a42941

Please sign in to comment.