mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-10-17 21:58:40 +09:00
[goodgame] test view_count with int keyword
This commit is contained in:
@@ -108,7 +108,7 @@ class GoodgameStreamIE(GoodgameBaseIE):
|
||||
return {
|
||||
'id': channel_id,
|
||||
'title': stream_info['title'],
|
||||
'view_count': int_or_none(stream_info.get('viewers')),
|
||||
'view_count': int(stream_info.get('viewers')),
|
||||
'thumbnail': thumbnail,
|
||||
'is_live': True,
|
||||
'formats': formats,
|
||||
|
Reference in New Issue
Block a user