diff --git a/data/interfaces/default/current_activity_instance.html b/data/interfaces/default/current_activity_instance.html index 2e840763..53fc50d6 100644 --- a/data/interfaces/default/current_activity_instance.html +++ b/data/interfaces/default/current_activity_instance.html @@ -148,7 +148,7 @@ DOCUMENTATION :: END Stream  Direct Play % endif
- % if data['media_type'] in ('movie', 'episode'): + % if data['media_type'] in ('movie', 'episode', 'clip'): % if data['video_decision'] == 'transcode': Video  Transcode (${data['transcode_video_codec']}) (${data['transcode_width']}x${data['transcode_height']}) % elif data['video_decision'] == 'copy': @@ -158,7 +158,7 @@ DOCUMENTATION :: END % endif
% endif - % if data['media_type'] in ('movie', 'episode', 'track'): + % if data['media_type'] in ('movie', 'episode', 'clip', 'track'): % if data['audio_decision'] == 'transcode': Audio  Transcode (${data['transcode_audio_codec']}) (${data['transcode_audio_channels']}ch) % elif data['audio_decision'] == 'copy': diff --git a/data/interfaces/default/js/tables/history_table.js b/data/interfaces/default/js/tables/history_table.js index 21d0b856..d219fe0b 100644 --- a/data/interfaces/default/js/tables/history_table.js +++ b/data/interfaces/default/js/tables/history_table.js @@ -161,8 +161,10 @@ history_table_options = { media_type = ''; thumb_popover = '' + cellData + parent_info + '' $(td).html('
' + media_type + ' ' + thumb_popover + '
'); - } else { + } else if (/^[0-9]+$/.test(rowData['rating_key'])) { $(td).html('' + cellData + ''); + } else { + $(td).html(cellData); } } },