diff options
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) { |