mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-09 05:21:13 +02:00
Fix for login needed for efpfanfic.net 'red' rated stories.
This commit is contained in:
parent
19d181a90f
commit
12161a8224
1 changed files with 2 additions and 1 deletions
|
|
@ -74,7 +74,8 @@ class EFPFanFicNet(BaseSiteAdapter):
|
|||
|
||||
## Login seems to be reasonably standard across eFiction sites.
|
||||
def needToLoginCheck(self, data):
|
||||
if 'Fai il login e leggi la storia!' in data:
|
||||
if( 'Fai il login e leggi la storia!' in data or
|
||||
'Questa storia presenta contenuti non adatti ai minori' in data ):
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
|
|
|
|||
Loading…
Reference in a new issue