diff options
Diffstat (limited to 'pyload/plugin/hoster/GoogledriveCom.py')
-rw-r--r-- | pyload/plugin/hoster/GoogledriveCom.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pyload/plugin/hoster/GoogledriveCom.py b/pyload/plugin/hoster/GoogledriveCom.py index 6e38db427..db4ee788a 100644 --- a/pyload/plugin/hoster/GoogledriveCom.py +++ b/pyload/plugin/hoster/GoogledriveCom.py @@ -12,7 +12,7 @@ from pyload.utils import html_unescape class GoogledriveCom(SimpleHoster): __name = "GoogledriveCom" __type = "hoster" - __version = "0.07" + __version = "0.08" __pattern = r'https?://(?:www\.)?drive\.google\.com/file/.+' __config = [("use_premium", "bool", "Use premium account if available", True)] @@ -22,6 +22,8 @@ class GoogledriveCom(SimpleHoster): __authors = [("zapp-brannigan", "fuerst.reinje@web.de")] + DISPOSITION = False #: Remove in 0.4.10 + NAME_PATTERN = r'"og:title" content="(?P<N>.*?)">' OFFLINE_PATTERN = r'align="center"><p class="errorMessage"' |