Fix search not working in video.html

This commit is contained in:
metalune 2021-01-19 23:16:59 +01:00
parent e75618e247
commit f6f392db5a
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ async def video(domain, id):
quality = "best"
vid = VideoWrapper(data, quality)
return await render_template("video.html", video=vid, quality=quality, embed=embed)
return await render_template("video.html", domain=domain, video=vid, quality=quality, embed=embed)
if __name__ == "__main__":