From 0077e25f9a65277d9793ca01408009c37c800796 Mon Sep 17 00:00:00 2001
From: anekos
Date: Wed, 27 Oct 2010 18:41:23 +0900
Subject: slice の引数まつがい修正
---
twittperator.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'twittperator.js')
diff --git a/twittperator.js b/twittperator.js
index 0d0b0cf..62c3687 100644
--- a/twittperator.js
+++ b/twittperator.js
@@ -28,7 +28,7 @@ let PLUGIN_INFO =
Twittperator
Twitter Client using ChirpStream
OAuth対応Twitterクライアント
- 1.9.0
+ 1.9.1
2.3
2.4
teramako
@@ -2016,7 +2016,7 @@ let PLUGIN_INFO =
}
} else {
setTimelineCompleter();
- let arg = args.literalArg.slice(context.caret);
+ let arg = args.literalArg.slice(0, context.caret);
let m;
if (m = arg.match(/(RT\s+)@.*$/)) {
(m.index === 0 ? Completers.name_id
--
cgit v1.2.3