From c6c63df7fd9293be3e606e1f1ecb1ec0c790e543 Mon Sep 17 00:00:00 2001 From: Steve Heffernan Date: Tue, 17 Jan 2012 15:31:11 -0800 Subject: [PATCH] Fixed a check for current tech in source loading --- src/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.js b/src/player.js index 9ef8feaee..7c820b1b9 100644 --- a/src/player.js +++ b/src/player.js @@ -612,7 +612,7 @@ _V_.Player = _V_.Component.extend({ if (tech.canPlaySource.call(this, source)) { // If this technology is already loaded, set source - if (techName == this.currentTechName) { + if (techName == this.techName) { this.src(source); // Passing the source object // Otherwise load this technology with chosen source