diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-11-10 07:19:23 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-11-10 07:19:23 +0800 |
commit | 90a594297c72e0e4515e14fcbabec554be30b399 (patch) | |
tree | 4143efad02f00d1d2db1e96dfda8c114f79235a5 /embed/mozilla/MozDownload.cpp | |
parent | 4e3ff98a7670d0530adb3bca0d00a5d141edb856 (diff) | |
download | gsoc2013-epiphany-90a594297c72e0e4515e14fcbabec554be30b399.tar gsoc2013-epiphany-90a594297c72e0e4515e14fcbabec554be30b399.tar.gz gsoc2013-epiphany-90a594297c72e0e4515e14fcbabec554be30b399.tar.bz2 gsoc2013-epiphany-90a594297c72e0e4515e14fcbabec554be30b399.tar.lz gsoc2013-epiphany-90a594297c72e0e4515e14fcbabec554be30b399.tar.xz gsoc2013-epiphany-90a594297c72e0e4515e14fcbabec554be30b399.tar.zst gsoc2013-epiphany-90a594297c72e0e4515e14fcbabec554be30b399.zip |
Do not disable conversion. Some pages was saved as gz compressed.
2003-11-10 Marco Pesenti Gritti <marco@gnome.org>
* embed/mozilla/MozDownload.cpp:
Do not disable conversion. Some pages was
saved as gz compressed.
Diffstat (limited to 'embed/mozilla/MozDownload.cpp')
-rw-r--r-- | embed/mozilla/MozDownload.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/embed/mozilla/MozDownload.cpp b/embed/mozilla/MozDownload.cpp index 875d11e3b..d4931737c 100644 --- a/embed/mozilla/MozDownload.cpp +++ b/embed/mozilla/MozDownload.cpp @@ -411,8 +411,7 @@ nsresult InitiateMozillaDownload (nsIDOMDocument *domDocument, nsIURI *sourceURI nsnull, timeNow, webPersist, embedPersist); if (NS_FAILED(rv)) return rv; - PRInt32 flags = nsIWebBrowserPersist::PERSIST_FLAGS_NO_CONVERSION | - nsIWebBrowserPersist::PERSIST_FLAGS_REPLACE_EXISTING_FILES; + PRInt32 flags = nsIWebBrowserPersist::PERSIST_FLAGS_REPLACE_EXISTING_FILES; if (ephy_flags & EMBED_PERSIST_COPY_PAGE) { flags |= nsIWebBrowserPersist::PERSIST_FLAGS_FROM_CACHE; |