diff options
author | anekos | 2010-12-13 20:16:36 +0900 |
---|---|---|
committer | anekos | 2010-12-13 20:16:36 +0900 |
commit | c55a40ab79516bb3e939f94b3c3389d0db387cf9 (patch) | |
tree | 3287052518983c4a463b9661f2fe5e48d01a5294 /twittperator.js | |
parent | 04ce6ec260f94ad9aed6ae4627d678eac4b71d9a (diff) | |
download | vimperator-plugins-c55a40ab79516bb3e939f94b3c3389d0db387cf9.tar.bz2 |
54bit
Diffstat (limited to 'twittperator.js')
-rw-r--r-- | twittperator.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twittperator.js b/twittperator.js index 6091545..c286a88 100644 --- a/twittperator.js +++ b/twittperator.js @@ -28,7 +28,7 @@ let PLUGIN_INFO = <name>Twittperator</name> <description>Twitter Client using OAuth and Streaming API</description> <description lang="ja">OAuth/StreamingAPI対応Twitterクライアント</description> - <version>1.11.1</version> + <version>1.11.2</version> <minVersion>2.3</minVersion> <maxVersion>3.0</maxVersion> <author mail="teramako@gmail.com" homepage="http://d.hatena.ne.jp/teramako/">teramako</author> @@ -1991,7 +1991,7 @@ let PLUGIN_INFO = let m = arg.match(/^\d+/); if (!m) return; - let id = parseInt(m[0], 10); + let id = m[0]; history.filter(function(st) st.id === id).map(dtdd).forEach(liberator.echo); }, timelineCompleter: true, |