From 3f73e28a48c22d4e75e9a2e85faae96162d28491 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Sun, 6 Sep 2020 17:30:28 -0500 Subject: [PATCH] adapter_occlumencysycophanthexcom needed another 'needs login' string. --- fanficfare/adapters/adapter_occlumencysycophanthexcom.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fanficfare/adapters/adapter_occlumencysycophanthexcom.py b/fanficfare/adapters/adapter_occlumencysycophanthexcom.py index 14ff543e..a9658dc8 100644 --- a/fanficfare/adapters/adapter_occlumencysycophanthexcom.py +++ b/fanficfare/adapters/adapter_occlumencysycophanthexcom.py @@ -73,7 +73,8 @@ class OcclumencySycophantHexComAdapter(BaseSiteAdapter): ## Login seems to be reasonably standard across eFiction sites. def needToLoginCheck(self, data): if 'This story contains adult content and/or themes.' in data \ - or "That password doesn't match the one in our database" in data: + or "That password doesn't match the one in our database" in data \ + or 'user.php?action=lostpassword' in data: return True else: return False