Skip to content

Commit

Permalink
cast before access
Browse files Browse the repository at this point in the history
  • Loading branch information
chgibb committed Jul 30, 2017
1 parent cece125 commit 52b7dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CheckForUpdateProcess.ts
Expand Up @@ -44,7 +44,7 @@ process.on
}
}
);
process.on("uncaughtException",function(err : string){
(process as NodeJS.EventEmitter).on("uncaughtException",function(err : string){
console.log(err);
flags.done = true;
flags.failure = true;
Expand Down

0 comments on commit 52b7dca

Please sign in to comment.