Skip to content

Commit 63b016c

Browse files
committed
[fix] yawnt baaaka .. fixes #8
1 parent ec981c5 commit 63b016c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/caronte/common.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@ common.setupOutgoing = function(outgoing, options, req, forward) {
2525
function(e) { outgoing[e] = options[forward || 'target'][e]; }
2626
);
2727

28-
['method', 'path', 'headers'].forEach(
28+
['method', 'headers'].forEach(
2929
function(e) { outgoing[e] = req[e]; }
3030
);
3131

32+
outgoing.path = req.url;
33+
3234
return outgoing;
33-
};
35+
};

0 commit comments

Comments
 (0)