diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-11-09 03:06:33 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-11-09 03:06:33 -0500 |
| commit | aa93b03e1862e9f95570653d52b9d5858171d22f (patch) | |
| tree | 504d136f830ca9ee1dc3c49305216be7e1908efd /proxy | |
| parent | 7272a0c913ced4d0f19e81622020051ba2b5c18f (diff) | |
pull in form data
Diffstat (limited to 'proxy')
| -rw-r--r-- | proxy/index.js | 2 |
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 |
