diff --git a/you_get/downloader/googleplus.py b/you_get/downloader/googleplus.py index 7a0daff3..d3a601a1 100644 --- a/you_get/downloader/googleplus.py +++ b/you_get/downloader/googleplus.py @@ -8,7 +8,7 @@ def googleplus_download(url, output_dir = '.', merge = True, info_only = False): html = get_html(url) html = parse.unquote(html).replace('\/', '/') - title = r1(r'(.*)\n', html) + title = r1(r'<title>(.*)', html) or r1(r'(.*)\n', html) url2 = r1(r'"(https\://plus\.google\.com/photos/.*?)",,"image/jpeg","video"\]', html) html2 = get_html(url2)