diff options
author | Christian Pointner <equinox@helsinki.at> | 2017-07-04 17:23:08 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2017-07-04 17:23:08 (GMT) |
commit | 3ff3cab4df292c234a9083d6c3c3329d84d035d4 (patch) | |
tree | 9c1181421fc9f1c46e650cf2de8d35e45bc8c7a5 /www | |
parent | a0e8d4339c6b08c4a2908ebcd342bb542b51f5ad (diff) |
fetch some more days for nextshows
Diffstat (limited to 'www')
-rw-r--r-- | www/js/nextshows.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/nextshows.js b/www/js/nextshows.js index b6d0a05..9d4ff8e 100644 --- a/www/js/nextshows.js +++ b/www/js/nextshows.js @@ -39,7 +39,7 @@ rh.ShowList.prototype.fetch = function() { var self = this; var yd = new Date((new Date()) - 24 * 3600 * 1000); var ydstr = yd.getFullYear() + '-' + Number(yd.getMonth() + 1).pad(2) + '-' + Number(yd.getDate()).pad(2); - $.getJSON("/rh-bin/schedules.json?DAYS=3&START=" + ydstr, function(data) { + $.getJSON("/rh-bin/schedules.json?DAYS=5&START=" + ydstr, function(data) { if(data.status == "OK") { self.shows = []; $(data.shows).each(function(index, showdata) { |