1
0
mirror of https://github.com/balkian/go5ears.git synced 2024-09-21 11:21:42 +00:00

Safely parse the response from goear (avoid resets)

This commit is contained in:
J.Fernando Sánchez 2012-11-08 14:28:29 +01:00
parent 1cf3f5d803
commit 62eff02fee

View File

@ -74,6 +74,7 @@ app.get('/play', function(req,resp){
parser.parseString(xml, function(err,result){ parser.parseString(xml, function(err,result){
console.log("xml: "+xml); console.log("xml: "+xml);
console.log("Object: "+JSON.stringify(result)); console.log("Object: "+JSON.stringify(result));
try{
var song = result['songs']['song'][0]["$"]; var song = result['songs']['song'][0]["$"];
console.log("Song:"+JSON.stringify(song)); console.log("Song:"+JSON.stringify(song));
var path = song['path']; var path = song['path'];
@ -84,6 +85,7 @@ app.get('/play', function(req,resp){
'Location': path 'Location': path
//add other headers here... //add other headers here...
}); });
}
resp.end(); resp.end();
}); });
}); });