From d2eb3e07bf77bcb1fa85f1ddd768fffc5bb2a3b4 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 6 May 2018 14:29:44 +0200 Subject: remove rate limit, do not crash on http 4xx --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.js') diff --git a/index.js b/index.js index 70b9f47..5da0f82 100644 --- a/index.js +++ b/index.js @@ -15,7 +15,7 @@ function main() { const firstOfMay = moment('2018-05-01'); const later = R.curry((base, hs) => base.clone().add(hs, 'hours')); - const hours = R.range(0, 24 * 4); + const hours = R.range(0, 24 * 5); const laterMoments = R.map(later(firstOfMay), hours); const futures = R.map(loadFTimestamped, laterMoments); -- cgit v1.3.1