eHentai content warning fixed
authorNiki Roo <niki@nikiroo.be>
Tue, 19 Mar 2019 22:22:30 +0000 (23:22 +0100)
committerNiki Roo <niki@nikiroo.be>
Tue, 19 Mar 2019 22:22:30 +0000 (23:22 +0100)
TODO.md
changelog-fr.md
changelog.md
src/be/nikiroo/fanfix/supported/EHentai.java

diff --git a/TODO.md b/TODO.md
index bdf5cf6e74e39183b0d67ba143026ed62c142246..8feb5c5a55f65666d02491a6989f810c5bcc9574 100644 (file)
--- a/TODO.md
+++ b/TODO.md
@@ -81,7 +81,7 @@ My current planning for Fanfix (but not everything appears on this list):
 - [ ] Bugs
     - [x] Fix "Redownload also reset the source"
     - [ ] Fix "Redownload remote does not show the new item before restart of client app"
-    - [ ] Fix eHentai "content warning" access (see 455)
+    - [x] Fix eHentai "content warning" access (see 455)
     - [ ] Fix the configuration system (for new or changed options, new or changed languages)
     - [ ] remote import also download the file in cache, why?
     - [x] import file in remote mode tries to import remote file!!
index 667de9fd727cbd59be152fb1f6dfcf8bf787c4d4..ff93126931394e2bd120d6ddebe89927ecb997dd 100644 (file)
@@ -14,6 +14,7 @@
 - fix: deadlock dans certains cas rares (nikiroo-utils)
 - fix: le résumé n'était pas visibe dans certains cas
 - fix: update de nikiroo-utils, meilleures perfs pour le remote
+- fix: eHentai content warning
 
 # Version 1.8.1
 
index 817d49a52b9d2ad7d5a7b15f0f1ed209e63e2d0e..f509f96f382b3a1eba9a4090c10434a83e393ccd 100644 (file)
@@ -14,6 +14,7 @@
 - fix: deadlock in some rare cases (nikiroo-utils)
 - fix: the resume was not visible in some cases
 - fix: update nikiroo-utils, better remote perfs
+- fix: eHentai content warning
 
 # Version 1.8.1
 
index 9a09f077bf82b2145bd7242d52fbbb1b0d8cc266..1947620a365fe9e41a95477f88b4960db538966f 100644 (file)
@@ -7,6 +7,7 @@ import java.net.URL;
 import java.util.AbstractMap;
 import java.util.ArrayList;
 import java.util.List;
+import java.util.Map;
 import java.util.Map.Entry;
 import java.util.Scanner;
 
@@ -79,6 +80,14 @@ class EHentai extends BasicSupport_Deprecated {
                return true;
        }
 
+       @Override
+       public Map<String, String> getCookies() {
+               // TODO Auto-generated method stub
+               Map<String, String> cookies = super.getCookies();
+               cookies.put("nw", "1");
+               return cookies;
+       }
+
        private Image getCover(URL source, InputStream in) {
                Image author = null;
                String coverLine = getKeyLine(in, "<div id=\"gd1\"", " url(", ")");