mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 15:56:07 -07:00
Fix direct stream count in current activity header
This commit is contained in:
parent
652ca73126
commit
1120aa3841
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ class WebInterface(object):
|
|||
else:
|
||||
if s['video_decision'] == 'transcode' or s['audio_decision'] == 'transcode':
|
||||
data['transcode'] += 1
|
||||
elif s['video_decision'] == 'direct copy' or s['audio_decision'] == 'copy play':
|
||||
elif s['video_decision'] == 'copy' or s['audio_decision'] == 'copy':
|
||||
data['direct_stream'] += 1
|
||||
else:
|
||||
data['direct_play'] += 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue