diff options
Diffstat (limited to 'module/plugins/crypter/FshareVn.py')
| -rw-r--r-- | module/plugins/crypter/FshareVn.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/module/plugins/crypter/FshareVn.py b/module/plugins/crypter/FshareVn.py index 9b552a957..e85085cf1 100644 --- a/module/plugins/crypter/FshareVn.py +++ b/module/plugins/crypter/FshareVn.py @@ -8,7 +8,7 @@ class FshareVn(SimpleCrypter):      __type__    = "crypter"      __version__ = "0.01" -    __pattern__ = r'http://(?:www\.)?fshare\.vn/folder/.*' +    __pattern__ = r'http://(?:www\.)?fshare\.vn/folder/.+'      __config__  = [("use_subfolder", "bool", "Save package to subfolder", True),                     ("subfolder_per_package", "bool", "Create a subfolder for each package", True)] @@ -18,3 +18,6 @@ class FshareVn(SimpleCrypter):      LINK_PATTERN = r'<li class="w_80pc"><a href="([^"]+)" target="_blank">' + + +getInfo = create_getInfo(FshareVnFolder) | 
