mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-26 02:35:32 +01:00
Make base_efiction code accept https story urls.
This commit is contained in:
parent
3eca202567
commit
710800f976
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ class BaseEfictionAdapter(BaseSiteAdapter):
|
|||
|
||||
@classmethod
|
||||
def getSiteURLPattern(self):
|
||||
return r"http://(www\.)?%s%s/%s\?sid=(?P<storyId>\d+)" % (self.getSiteDomain(), self.getPathToArchive(), self.getViewStoryPhpName())
|
||||
return r"https?://(www\.)?%s%s/%s\?sid=(?P<storyId>\d+)" % (self.getSiteDomain(), self.getPathToArchive(), self.getViewStoryPhpName())
|
||||
|
||||
@classmethod
|
||||
def getEncoding(cls):
|
||||
|
|
|
|||
Loading…
Reference in a new issue