diff options
author | anekos | 2011-06-20 01:42:40 +0900 |
---|---|---|
committer | anekos | 2011-06-20 01:43:25 +0900 |
commit | c804c575a99a415c5ff3bb573fec18ae6d5637c2 (patch) | |
tree | 81c9d27771b962893089a713bf6e2dc8812c245e /zip-de-download.js | |
parent | f2fded5246b370d8f38a4643094f3a054556eeda (diff) | |
download | vimperator-plugins-c804c575a99a415c5ff3bb573fec18ae6d5637c2.tar.bz2 |
矛盾した引数を与えているのを修正
Diffstat (limited to 'zip-de-download.js')
-rw-r--r-- | zip-de-download.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zip-de-download.js b/zip-de-download.js index 9658057..2961154 100644 --- a/zip-de-download.js +++ b/zip-de-download.js @@ -1,5 +1,5 @@ let INFO = -<plugin name="zip-de-download" version="0.7.0" +<plugin name="zip-de-download" version="0.7.1" href="" summary="ZIPでダウンロードするお" xmlns="http://vimperator.org/namespaces/liberator"> @@ -232,7 +232,7 @@ let SITE_INFO = [ try { let stream = ch.open(); let entryName = ("000" + ++i).slice(-3) + "-" + getEntryName(ch.URI, ch.contentType); - liberator.echomsg("zip: " + url + " to " + entryName, 3); + liberator.echomsg("zip: " + url + " to " + entryName, commandline.FORCE_SINGLELINE); zipW.addEntryStream(entryName, Date.now() * 1000, Ci.nsIZipWriter.COMPRESSION_DEFAULT, stream, false); } catch (e) { // XXX エラー分を通知すべき? |