diff options
| author | 2014-10-28 17:37:51 +0100 | |
|---|---|---|
| committer | 2014-10-28 17:37:51 +0100 | |
| commit | 616aee243bf74d6cc8707b616f7496086a05ec7b (patch) | |
| tree | d0cacb84db5b147433caec99ac9e741daa0233b5 /module | |
| parent | [DuploadOrgFolder] Mark dead (diff) | |
| download | pyload-616aee243bf74d6cc8707b616f7496086a05ec7b.tar.xz | |
[NowVideoAt] multiDL and resumeDownload set to True
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/hoster/NowVideoAt.py | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/module/plugins/hoster/NowVideoAt.py b/module/plugins/hoster/NowVideoAt.py index 9bfb085c7..7c104eb29 100644 --- a/module/plugins/hoster/NowVideoAt.py +++ b/module/plugins/hoster/NowVideoAt.py @@ -8,7 +8,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo  class NowVideoAt(SimpleHoster):      __name__    = "NowVideoAt"      __type__    = "hoster" -    __version__ = "0.02" +    __version__ = "0.03"      __pattern__ = r'http://(?:www\.)?nowvideo\.(at|ch|co|eu|sx)/(video|mobile/#/videos)/(?P<ID>\w+)' @@ -25,6 +25,11 @@ class NowVideoAt(SimpleHoster):      LINK_PATTERN = r'<source src="(.+?)"' +    def setup(self): +        self.multiDL = True +        self.resumeDownload = True + +      def handleFree(self):          self.html = self.load("http://www.nowvideo.at/mobile/video.php", get={'id': self.file_info['ID']}) | 
