Don't try to infer the media format from the content only if contentSize is 0

This commit is contained in:
Marco Castelluccio 2014-11-17 00:38:07 +01:00
Родитель 4a7fa31dc2
Коммит 21e5973901
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -372,7 +372,7 @@ Player.prototype.getBufferSize = function() {
};
Player.prototype.getMediaFormat = function() {
if (this.url === null || this.contentSize === 0) {
if (this.contentSize === 0) {
return this.mediaFormat;
}