Skip to content

Commit 3f20e04

Browse files
authored
Merge pull request #47 from ScottSloan/dev
🐛 fix: 修复直播无法录制的问题
2 parents a74e611 + f846d91 commit 3f20e04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utils/common/enums.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ class EpisodeDisplayType(Enum):
2323
All = 3 # 获取全部相关视频
2424

2525
class LiveStatus(Enum):
26-
Not_Started = 1 # 未开播
27-
Live = 2 # 直播中
28-
Replay = 3 # 轮播中
26+
Not_Started = 0 # 未开播
27+
Live = 1 # 直播中
28+
Replay = 2 # 轮播中
2929

3030
class ProxyMode(Enum):
3131
Disable = 0 # 不使用

0 commit comments

Comments
 (0)