Skip to content

Commit

Permalink
Fix: [Server][LiveEncodingTask] EDCB NetworkTV ID がフロントエンドにも出力されてしまって…
Browse files Browse the repository at this point in the history
…いた不具合を修正
  • Loading branch information
tsukumijima committed Sep 13, 2023
1 parent b19925c commit cba2e41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/app/streams/LiveEncodingTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,8 @@ async def run(self) -> None:

# チューナーを起動する
# アンロック状態のチューナーインスタンスがあれば、自動的にそのチューナーが再利用される
self.livestream.setStatus('Standby', f'チューナーを起動しています… (EDCB NetworkTV ID: {self.livestream.tuner.getEDCBNetworkTVID()})')
Logging.debug_simple(f'[Live: {self.livestream.livestream_id}] EDCB NetworkTV ID: {self.livestream.tuner.getEDCBNetworkTVID()}')
self.livestream.setStatus('Standby', 'チューナーを起動しています…')
is_tuner_opened = await self.livestream.tuner.open()

# チューナーの起動に失敗した
Expand Down

0 comments on commit cba2e41

Please sign in to comment.