Skip to content

Commit b746a39

Browse files
committed
valid id's won't contain letters/videos for new videos
1 parent 8c8c73e commit b746a39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/lib/twitch/api/usher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def valid_video_id(video_id):
3434
video_id = 'v' + video_id[6:]
3535
if video_id.startswith(('a', 'c', 'v')):
3636
return video_id[1:]
37-
return ''
37+
return video_id
3838

3939

4040
@query

0 commit comments

Comments
 (0)