mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-06 08:52:55 +01:00
My fix for ffnet latest update chapters broke m. mobile support. Fixed.
This commit is contained in:
parent
df3b95aa6f
commit
57534c26c5
1 changed files with 3 additions and 0 deletions
|
|
@ -45,6 +45,9 @@ class FanFictionNetSiteAdapter(BaseSiteAdapter):
|
|||
# chapter list doesn't get the latest. So save and use the
|
||||
# original URL given to pull chapter list & metadata.
|
||||
self.origurl = url
|
||||
if "http://m." in self.origurl:
|
||||
## accept m(mobile)url, but use www.
|
||||
self.origurl = self.origurl.replace("http://m.","http://www.")
|
||||
|
||||
@staticmethod
|
||||
def getSiteDomain():
|
||||
|
|
|
|||
Loading…
Reference in a new issue