Skip to content

Commit

Permalink
new field for release
Browse files Browse the repository at this point in the history
  • Loading branch information
curiositycasualty committed Feb 20, 2016
1 parent 9737ace commit 40fd898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ app.get('/scrape', function(req, res){
$('.title_wrapper').filter(function(){
var data = $(this);
title = data.children().first().text().trim();
release = data.children().last().children().text().trim();
release = data.children().last().children().last().text().trim();

json.title = title;
json.release = release;
Expand Down

0 comments on commit 40fd898

Please sign in to comment.