From 1ed42479d3d3cda7ddd5481dabba7fe4eb967458 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2EFernando=20S=C3=A1nchez?= Date: Thu, 8 Nov 2012 14:39:50 +0100 Subject: [PATCH] Fixed try --- player.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/player.js b/player.js index 1c7d74b..42c9804 100644 --- a/player.js +++ b/player.js @@ -86,6 +86,9 @@ app.get('/play', function(req,resp){ //add other headers here... }); } + catch(exception){ + console.log(exception); + } resp.end(); }); });