aboutsummaryrefslogtreecommitdiffstats
path: root/twittperator/twsidebar.tw
diff options
context:
space:
mode:
authoranekos2011-12-15 15:53:18 +0900
committeranekos2011-12-15 15:53:18 +0900
commita31a98d38d2ebfc51834f9873b68e2e965619710 (patch)
tree4f17ecbbab5337451edaabf49e7e7bbba484972a /twittperator/twsidebar.tw
parenta3d41a47943b9a97d0d498f4dc1655841d420afb (diff)
downloadvimperator-plugins-a31a98d38d2ebfc51834f9873b68e2e965619710.tar.bz2
Fix reversed history.
Thanks, dionore.
Diffstat (limited to 'twittperator/twsidebar.tw')
-rwxr-xr-xtwittperator/twsidebar.tw2
1 files changed, 1 insertions, 1 deletions
diff --git a/twittperator/twsidebar.tw b/twittperator/twsidebar.tw
index 47cae8c..f6af3af 100755
--- a/twittperator/twsidebar.tw
+++ b/twittperator/twsidebar.tw
@@ -484,7 +484,7 @@ liberator.modules.TWAnekoSB = ANekoSB = (function () {
setTimeout(
function () {
readyToStart = false;
- Tweets.reverse().forEach(makeOnMsg(false));
+ Array.slice(Tweets).reverse().forEach(makeOnMsg(false));
plugins.twittperator.ChirpUserStream.addListener(added.chirp = makeOnMsg(true, 'chirp'));
plugins.twittperator.TrackingStream.addListener(added.filter = makeOnMsg(true, 'filter'));
},