[#1308] Check to make sure a media wrapper exists before we start using it.

This commit is contained in:
scottdowne 2012-08-24 14:06:28 -04:00
Родитель 5f34b14df4
Коммит 8bac29d220
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -366,7 +366,7 @@
// See if we can use a wrapper directly, if not, try players.
for ( j = 0; j < wrappers.length; j++ ) {
mediaWrapper = Popcorn[ wrappers[ j ] ];
if ( mediaWrapper._canPlaySrc( srci ) === "probably" ) {
if ( mediaWrapper && mediaWrapper._canPlaySrc( srci ) === "probably" ) {
media = mediaWrapper( node );
popcorn = Popcorn( media, options );
// Set src, but not until after we return the media so the caller