Skip to content

Commit

Permalink
Fix: [Server][schemas] LiveChannel が Channel を継承していない不具合を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Jul 29, 2023
1 parent d23f9c9 commit 0e154d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/app/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Channel(PydanticModel):
is_radiochannel: bool
is_watchable: bool

class LiveChannel(PydanticModel):
class LiveChannel(Channel):
# 以下はすべて動的に生成される TV ライブストリーミング用の追加カラム
is_display: bool
viewer_count: int
Expand Down

0 comments on commit 0e154d9

Please sign in to comment.