summaryrefslogtreecommitdiff
path: root/proxy/index.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-11-09 03:06:33 -0500
committerJules Laplace <jules@okfoc.us>2015-11-09 03:06:33 -0500
commitaa93b03e1862e9f95570653d52b9d5858171d22f (patch)
tree504d136f830ca9ee1dc3c49305216be7e1908efd /proxy/index.js
parent7272a0c913ced4d0f19e81622020051ba2b5c18f (diff)
pull in form data
Diffstat (limited to 'proxy/index.js')
-rw-r--r--proxy/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/proxy/index.js b/proxy/index.js
index 844bf3e7..f9203fc7 100644
--- a/proxy/index.js
+++ b/proxy/index.js
@@ -102,7 +102,7 @@ function stream (req, res) {
url = 'index.html'
mime = 'text/html'
}
- if (url == '/cordova.js') {
+ if (url == '/cordova.js' || url == 'favicon.ico') {
res.writeHead(200, 'OK', { 'Content-type': 'application/javascript' })
res.end('{}')
return