mirror of
https://github.com/balkian/go5ears.git
synced 2024-11-14 02:02:29 +00:00
Safely parse the response from goear (avoid resets)
This commit is contained in:
parent
1cf3f5d803
commit
62eff02fee
22
player.js
22
player.js
@ -74,16 +74,18 @@ app.get('/play', function(req,resp){
|
||||
parser.parseString(xml, function(err,result){
|
||||
console.log("xml: "+xml);
|
||||
console.log("Object: "+JSON.stringify(result));
|
||||
var song = result['songs']['song'][0]["$"];
|
||||
console.log("Song:"+JSON.stringify(song));
|
||||
var path = song['path'];
|
||||
var title = song['title'];
|
||||
var artist = song['artist'];
|
||||
console.log(title + " - " +artist+" - "+path);
|
||||
resp.writeHead(302, {
|
||||
'Location': path
|
||||
//add other headers here...
|
||||
});
|
||||
try{
|
||||
var song = result['songs']['song'][0]["$"];
|
||||
console.log("Song:"+JSON.stringify(song));
|
||||
var path = song['path'];
|
||||
var title = song['title'];
|
||||
var artist = song['artist'];
|
||||
console.log(title + " - " +artist+" - "+path);
|
||||
resp.writeHead(302, {
|
||||
'Location': path
|
||||
//add other headers here...
|
||||
});
|
||||
}
|
||||
resp.end();
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user