diff options
author | anekos | 2010-08-07 16:57:15 +0000 |
---|---|---|
committer | anekos | 2010-08-07 16:57:15 +0000 |
commit | 73faea4693875f2b007c95e4521af06d5895a65a (patch) | |
tree | be0dc0b90ae18e6fff2dc9817d771143aed88bc6 | |
parent | 86f2e73a75c3b678e72b0829723e19e76504ec9e (diff) | |
download | vimperator-plugins-73faea4693875f2b007c95e4521af06d5895a65a.tar.bz2 |
再接続開始時のメッセージ順がおかしかった
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38220 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-x | twittperator.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twittperator.js b/twittperator.js index 75849da..8689caf 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1259,11 +1259,11 @@ let PLUGIN_INFO = buf += data; } } catch (e if /NS_ERROR_NET_RESET|NS_BASE_STREAM_CLOSED/(e)) { - restart(); liberator.echoerr('Twittperator: ChirpStream was stopped by ' + e.name + '.'); - } catch (e) { restart(); + } catch (e) { liberator.echoerr('Twittperator: Unknown error on ChirpStream connection: ' + e.name); + restart(); } }, 500); |