diff options
author | anekos | 2011-12-15 15:53:18 +0900 |
---|---|---|
committer | anekos | 2011-12-15 15:53:18 +0900 |
commit | a31a98d38d2ebfc51834f9873b68e2e965619710 (patch) | |
tree | 4f17ecbbab5337451edaabf49e7e7bbba484972a /twittperator/twsidebar.tw | |
parent | a3d41a47943b9a97d0d498f4dc1655841d420afb (diff) | |
download | vimperator-plugins-a31a98d38d2ebfc51834f9873b68e2e965619710.tar.bz2 |
Fix reversed history.
Thanks, dionore.
Diffstat (limited to 'twittperator/twsidebar.tw')
-rwxr-xr-x | twittperator/twsidebar.tw | 2 |
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')); }, |