diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/istreamdev.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js index 5761dbb..8dc2024 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -478,7 +478,7 @@ function playvideo(session,name) { var thumbwidth = $('#streaming span[rel="thumbwidth"]').text();
var thumbheight = $('#streaming span[rel="thumbheight"]').text();
$('#streaming ul[class="streamstatus"]').find('span[class="mode"]').html(message);
- if ( status == "ready" ) {
+ if ( status == "ready" || status == "error" ) {
$('#player').html('<video id="videofeed" width="' + thumbwidth + '" height="' + thumbheight + '" poster="ram/session' + session + '/thumb.png" src="' + url + '" ></video><span rel="ready"></span>');
return false;
}
|