This commit is contained in:
BlackLight 2018-12-12 22:52:51 +01:00
parent b7603ba166
commit 9b0a72269a
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ class VideoOmxplayerPlugin(Plugin):
return [
{
'url': 'https://www.youtube.com/watch?v=' + item['id']['videoId'],
'title' item.get('snippet', {}).get('title', '<No Title>'),
'title': item.get('snippet', {}).get('title', '<No Title>'),
}
for item in get_plugin('google.youtube').search(query=query).output
if item.get('id', {}).get('kind') == 'youtube#video'