Skip to content

Commit c4ff171

Browse files
authored
Merge pull request #120 from anxdpanic/pr_isengard
valid id's won't contain letters/videos for new videos
2 parents 8c8c73e + b746a39 commit c4ff171

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)