From ef5c51c5029766860e669d51be1b4de9f363b056 Mon Sep 17 00:00:00 2001
From: johnshaughnessy <johnfshaughnessy@gmail.com>
Date: Wed, 8 Aug 2018 16:46:58 -0700
Subject: [PATCH] Don't call resolveMedia on the src passed into loadGLTF.

---
 src/components/gltf-model-plus.js | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/src/components/gltf-model-plus.js b/src/components/gltf-model-plus.js
index 4ca78bb33..bc0457d65 100644
--- a/src/components/gltf-model-plus.js
+++ b/src/components/gltf-model-plus.js
@@ -221,13 +221,9 @@ async function resolveGLTFUri(gltfProperty, basePath) {
 }
 
 async function loadGLTF(src, token, contentType, preferredTechnique, onProgress) {
-  const resolved = await resolveMedia(src, token);
-  const raw = resolved.raw;
-  const origin = resolved.origin;
-  contentType = contentType || resolved.contentType;
-  const basePath = THREE.LoaderUtils.extractUrlBase(origin);
+  const basePath = THREE.LoaderUtils.extractUrlBase(src);
 
-  let gltfUrl = raw;
+  let gltfUrl = src;
   let fileMap;
 
   if (contentType.includes("model/gltf+zip") || contentType.includes("application/x-zip-compressed")) {
-- 
GitLab