Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/sipgate/sipgate.io
Browse files Browse the repository at this point in the history
  • Loading branch information
fnordian committed May 12, 2015
2 parents deec0bd + 62ca9b0 commit b4ff2e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/node_modules
2 changes: 1 addition & 1 deletion examples/nodejs/plain/dial.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ http.createServer(function (req, res) {
'Content-Type': 'application/xml'
});

res.header('Content-Type','application/xml').write(body);
res.write(body);

res.end();
}).listen(3000);
Expand Down
2 changes: 1 addition & 1 deletion examples/nodejs/plain/reject.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ http.createServer(function (req, res) {
'Content-Type': 'application/xml'
});

res.header('Content-Type','application/xml').write(body);
res.write(body);

res.end();
}).listen(3000);
Expand Down

0 comments on commit b4ff2e2

Please sign in to comment.