diff options
author | anekos | 2010-09-27 08:59:12 +0000 |
---|---|---|
committer | anekos | 2010-09-27 08:59:12 +0000 |
commit | 5bd9290fba5ae1dead92c48c3b61c648bc276116 (patch) | |
tree | 563422480df440bafab146953657fbed73be8562 | |
parent | a7f8b53b0cdcedb2524daaaa1d45b52d4007ed4d (diff) | |
download | vimperator-plugins-5bd9290fba5ae1dead92c48c3b61c648bc276116.tar.bz2 |
意味の分からない返り値を返すべきじゃなかった
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38523 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-x | twittperator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twittperator.js b/twittperator.js index a4b0d52..4d8ab01 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1371,7 +1371,7 @@ let PLUGIN_INFO = function onMsg(msg, raw) { let hash = getStatusHash(msg) if (recentTweets.some(function (it) it === hash)) - return false; + return; recentTweets.unshift(hash); if (recentTweets.length > 10) |