aboutsummaryrefslogtreecommitdiffstats
path: root/twittperator.js
diff options
context:
space:
mode:
authoranekos2010-12-13 20:16:36 +0900
committeranekos2010-12-13 20:16:36 +0900
commitc55a40ab79516bb3e939f94b3c3389d0db387cf9 (patch)
tree3287052518983c4a463b9661f2fe5e48d01a5294 /twittperator.js
parent04ce6ec260f94ad9aed6ae4627d678eac4b71d9a (diff)
downloadvimperator-plugins-c55a40ab79516bb3e939f94b3c3389d0db387cf9.tar.bz2
54bit
Diffstat (limited to 'twittperator.js')
-rw-r--r--twittperator.js4
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,