Skip to content

Commit

Permalink
Fixed router
Browse files Browse the repository at this point in the history
  • Loading branch information
xFontroSF authored and xFontroSF committed Sep 26, 2012
1 parent aa76bf3 commit d43d8bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions router.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function route(handle, operation, a, b, resultat, err) {
if (typeof handle[operation] === 'function') {

var routing = handle[operation](
/*var routing = */handle[operation](
a,
b,
function(res){
Expand Down Expand Up @@ -31,9 +31,9 @@ function route(handle, operation, a, b, resultat, err) {

}

routing.on('error', function(e){
/*routing.on('error', function(e){
console.log("Routing Caught the error: " + e);
});
});*/
}

exports.route = route;

0 comments on commit d43d8bf

Please sign in to comment.