Bugfix: Support integer-only ?t param

When there's only an integer, and no unit, it's all in seconds
This commit is contained in:
James Taylor 2020-07-30 13:07:16 -07:00
parent e78d239323
commit b3b48967c5

View File

@ -382,6 +382,8 @@ def get_watch_page(video_id=None):
if re.fullmatch(r'(\d+(h|m|s))+', time_start_str):
for match in re.finditer(r'(\d+)(h|m|s)', time_start_str):
time_start += int(match.group(1))*time_table[match.group(2)]
elif re.fullmatch(r'\d+', time_start_str):
time_start = int(time_start_str)
lc = request.args.get('lc', '')
playlist_id = request.args.get('list')