diff options
-rw-r--r-- | youtube_dlc/extractor/twitter.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/twitter.py b/youtube_dlc/extractor/twitter.py index 8c35e285c..78d8ebdd5 100644 --- a/youtube_dlc/extractor/twitter.py +++ b/youtube_dlc/extractor/twitter.py @@ -615,4 +615,5 @@ class TwitterShortenerIE(TwitterBaseIE): _VALID_URL = r'https?://t.co/' def _real_extract(self, url): - print(url)
\ No newline at end of file + print(url) + return self.url_result(url, 'Generic')
\ No newline at end of file |