浏览代码

Fixed issue where something a song wouldn't play and data wouldn't load.

KrisVos130 9 年之前
父节点
当前提交
a0db53374d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/client/client.js

+ 1 - 1
app/client/client.js

@@ -1836,7 +1836,7 @@ Template.room.onCreated(function () {
                 }
                 $("#player").show();
                 function loadVideo() {
-                    if (YT.loaded === 0 && YT.loading === 1) {
+                    if (YT !== undefined && YT.loaded === 0 && YT.loading === 1) {
                         Session.set("loadVideoTimeout", Meteor.setTimeout(function() {
                             loadVideo();
                         }, 500));