From d17dad9b9c8ba19baee107e551c11a940032450d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Rolf?= <rrolf@rolf.virtuos.uni-osnabrueck.de> Date: Tue, 11 Jul 2017 11:19:44 +0200 Subject: [PATCH] removed obsolete "manifest" that created a NPE, as manifest ist not part of the manifest object. --- src/streaming/ManifestLoader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streaming/ManifestLoader.js b/src/streaming/ManifestLoader.js index 79cf5b36c..71e11f6a0 100644 --- a/src/streaming/ManifestLoader.js +++ b/src/streaming/ManifestLoader.js @@ -165,7 +165,7 @@ function ManifestLoader(config) { // In the following, we only use the first Location entry even if many are available // Compare with ManifestUpdater/DashManifestModel if (manifest.hasOwnProperty(Constants.LOCATION)) { - baseUri = urlUtils.parseBaseUrl(manifest.manifest.Location_asArray[0]); + baseUri = urlUtils.parseBaseUrl(manifest.Location_asArray[0]); log('BaseURI set by Location to: ' + baseUri); } -- GitLab