diff --git a/data/interfaces/default/current_activity.html b/data/interfaces/default/current_activity.html
index 04632966..00a96048 100644
--- a/data/interfaces/default/current_activity.html
+++ b/data/interfaces/default/current_activity.html
@@ -119,6 +119,8 @@ DOCUMENTATION :: END
% if a['type'] == 'track':
% if a['audio_decision'] == 'direct play':
Stream Direct Play
+ % elif a['audio_decision'] == 'copy':
+ Stream Direct Stream
% else:
Stream Transcoding
(Speed: ${a['transcode_speed']})
@@ -136,8 +138,10 @@ DOCUMENTATION :: END
Audio Transcode (${a['transcode_audio_codec']}) (${a['transcode_audio_channels']}ch)
% endif
% elif a['type'] == 'episode' or a['type'] == 'movie' or a['type'] == 'clip':
- % if a['video_decision'] == 'direct play':
+ % if a['video_decision'] == 'direct play' and a['audio_decision'] == 'direct play':
Stream Direct Play
+ % elif a['video_decision'] == 'copy' and a['audio_decision'] == 'copy':
+ Stream Direct Stream
% else:
Stream Transcoding
(Speed: ${a['transcode_speed']})
@@ -165,6 +169,8 @@ DOCUMENTATION :: END
% elif a['type'] == 'photo':
% if a['video_decision'] == 'direct play':
Stream Direct Play
+ % elif a['video_decision'] == 'copy':
+ Stream Direct Stream
% else:
Stream
Transcoding