summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2023-11-18 11:02:48 +0100
committerTom Smeding <tom@tomsmeding.com>2023-11-18 11:02:48 +0100
commit95c16675ff916eb8033775414bce3a2122252a88 (patch)
tree805c8cd5300cdfc66ed96b4a9fabb15ada2bf4c0
parentac8f150745ff1cc1d0b6fb4895bf9b7c4ef37f8d (diff)
more
-rw-r--r--modules/changes/changes.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/changes/changes.js b/modules/changes/changes.js
index b1feba3..dbfe55c 100644
--- a/modules/changes/changes.js
+++ b/modules/changes/changes.js
@@ -341,7 +341,7 @@ module.exports=function(app,io,_moddir){
var orig_tl=urls[url].timeline;
var tl=new Array(orig_tl.length);
for(var i=0;i<orig_tl.length;i++){
- tl[i]=[orig_tl[0],orig_tl[1]];
+ tl[i]=[orig_tl[i][0],orig_tl[i][1]];
}
res.json({url:urls[url].url,timeline:tl});
});