diff options
author | anekos | 2011-10-13 04:05:55 +0900 |
---|---|---|
committer | anekos | 2011-10-13 19:25:28 +0900 |
commit | b238610c7198b1d6bdbdab1f5f8c9e232931b191 (patch) | |
tree | e59883648a8b41d8423c20b9c874c50b029b099f /twittperator.js | |
parent | 18f0bfed1fb98b52df44c8b875988c683276a014 (diff) | |
download | vimperator-plugins-b238610c7198b1d6bdbdab1f5f8c9e232931b191.tar.bz2 |
tracking stream を https に変更
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 7f5ef38..7407705 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.16.0</version> + <version>1.16.1</version> <minVersion>2.3</minVersion> <author email="teramako@gmail.com" homepage="http://d.hatena.ne.jp/teramako/">teramako</author> <author email="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> @@ -2431,7 +2431,7 @@ let PLUGIN_INFO = // ストリーム let ChirpUserStream = Stream({ name: 'chirp stream', url: "https://userstream.twitter.com/2/user.json" }); - let TrackingStream = Stream({ name: 'tracking stream', url: "http://stream.twitter.com/1/statuses/filter.json" }); + let TrackingStream = Stream({ name: 'tracking stream', url: "https://stream.twitter.com/1/statuses/filter.json" }); // 公開オブジェクト __context__.OAuth = tw; |