Skip to content

Commit

Permalink
Make sure that empty requests are not sent.
Browse files Browse the repository at this point in the history
  • Loading branch information
process-bot committed May 23, 2013
1 parent 6983857 commit 5714764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/Native/Signal/Http.js
Expand Up @@ -11,7 +11,7 @@ Elm.Native.Http = function(elm) {


function registerReq(queue,responses) { return function(req) {
if (req.url !== "") { sendReq(queue,responses,req); }
if (req.url.ctor !== 'Nil') { sendReq(queue,responses,req); }
};
}

Expand Down

0 comments on commit 5714764

Please sign in to comment.