summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorWolfgang Müller2024-11-15 12:15:46 +0100
committerWolfgang Müller2024-11-15 12:15:46 +0100
commit7c63e0bed9c605f0ce35eef4b05d68676bb0ed29 (patch)
tree7727fa4881e6ebec732043e4a14e9f854385fa94 /src
parent6a138ebe25d4d22e35a10cdf1b90c9b40aa224b7 (diff)
downloadhircine-7c63e0bed9c605f0ce35eef4b05d68676bb0ed29.tar.gz
backend/plugins: Have exhentai assume no censorship for non-h
Non-H usually has nothing to censor, so this should be a safe default. We have not come across anything where this would have been a false positive.
Diffstat (limited to 'src')
-rw-r--r--src/hircine/plugins/scrapers/handlers/exhentai.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hircine/plugins/scrapers/handlers/exhentai.py b/src/hircine/plugins/scrapers/handlers/exhentai.py
index 33733be..7bffc4f 100644
--- a/src/hircine/plugins/scrapers/handlers/exhentai.py
+++ b/src/hircine/plugins/scrapers/handlers/exhentai.py
@@ -59,6 +59,9 @@ class ExHentaiHandler:
yield Censorship(enums.Censorship.NONE)
else:
yield Censorship(enums.Censorship.BAR)
+ else:
+ if not self.has_censorship_tag:
+ yield Censorship(enums.Censorship.NONE)
if self.is_likely_rtl:
yield Direction(enums.Direction.RIGHT_TO_LEFT)