1
0
mirror of https://git.sr.ht/~metalune/simpleweb_peertube synced 2024-12-22 13:04:52 +01:00

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

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__":