From 04a145207ee5b7c405de0608b1c7e13db8ec97a3 Mon Sep 17 00:00:00 2001 From: bitraid Date: Tue, 12 Feb 2019 13:04:41 +0200 Subject: [PATCH] [imgur] Don't fail on missing OpenGraph title --- youtube_dl/extractor/imgur.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/imgur.py b/youtube_dl/extractor/imgur.py index 0eb54db3f..b6658c760 100644 --- a/youtube_dl/extractor/imgur.py +++ b/youtube_dl/extractor/imgur.py @@ -87,7 +87,7 @@ class ImgurIE(InfoExtractor): return { 'id': video_id, 'formats': formats, - 'title': self._og_search_title(webpage), + 'title': self._og_search_title(webpage, default='untitled'), }