Skip to content

Commit

Permalink
Return value for ThreadManager.prototype.startProcess
Browse files Browse the repository at this point in the history
Returns the correct value for `ThreadManager.prototype.startProcess
`
  • Loading branch information
cyderize committed Feb 9, 2017
1 parent 3047286 commit 0a201b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edgy/changesToThreads.js
Expand Up @@ -10,7 +10,7 @@ ThreadManager.prototype.startProcess = (function(oldStartProcess) {
isClicked,
rightAway
) {
oldStartProcess.call(this, block, isThreadSafe, exportResult, callback, isClicked, rightAway);
return oldStartProcess.call(this, block, isThreadSafe, exportResult, callback, isClicked, rightAway);
clickstream.log("startProcess", {blockId: block.topBlock().blockID});
};
}(ThreadManager.prototype.startProcess));
Expand Down

0 comments on commit 0a201b4

Please sign in to comment.