diff --git a/src/you_get/downloader/googleplus.py b/src/you_get/downloader/googleplus.py index 2c106a70..fb386c39 100644 --- a/src/you_get/downloader/googleplus.py +++ b/src/you_get/downloader/googleplus.py @@ -13,7 +13,7 @@ def googleplus_download(url, output_dir = '.', merge = True, info_only = False): html = get_html(url) html = parse.unquote(html).replace('\/', '/') - title = r1(r'(.*)', html) or r1(r'(.*)\n', html) + title = r1(r'<title>(.*)', html) or r1(r'(.*)\n', html) or r1(r'<meta property="og:title" content="([^"]*)"', html) url2 = r1(r'<a href="([^"]+)" target="_blank" class="Mn" >', html) if url2: