Skip to content

Commit

Permalink
python: fix tag bug in fill_livestream_response
Browse files Browse the repository at this point in the history
  • Loading branch information
misodengaku committed Nov 20, 2023
1 parent 3f022c6 commit 3369af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/python/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1787,7 +1787,7 @@ def fill_livestream_response(
tag_row = c.fetchone()
if not tag_row:
raise HttpException("failed to get tags", INTERNAL_SERVER_ERROR)
tag = models.Tag(id=row["id"], name=tag_row["name"])
tag = models.Tag(id=tag_row["id"], name=tag_row["name"])
tags.append(tag)

livestream = models.LiveStream(
Expand Down

0 comments on commit 3369af2

Please sign in to comment.