From 9b7264e9650e130243f012ca79a3ac0d48c01a7d Mon Sep 17 00:00:00 2001 From: fbr Date: Sat, 29 Nov 2014 00:09:28 +0100 Subject: [PATCH] URL parameter is since, not until, how did we not find this earlier ^^ --- data/timestamp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/timestamp.js b/data/timestamp.js index cc737f0..61e2f0a 100644 --- a/data/timestamp.js +++ b/data/timestamp.js @@ -8,7 +8,7 @@ var Timestamp = function(timestamp) { Timestamp.prototype.getSinceURL = function() { var url = new URL(window.location); - url.searchParams.append("until", this.timestamp); + url.searchParams.append("since", this.timestamp); return url; }