From d45e6f00cbbe012e28baee53745c2e81f137e508 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Thu, 12 Jan 2017 22:35:42 +1300 Subject: [PATCH] Prepare only one download at a time --- scripts/system/html/js/marketplacesInject.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/system/html/js/marketplacesInject.js b/scripts/system/html/js/marketplacesInject.js index fbffed24d3..bce6a0e5d9 100644 --- a/scripts/system/html/js/marketplacesInject.js +++ b/scripts/system/html/js/marketplacesInject.js @@ -138,6 +138,12 @@ // Automatic download to High Fidelity. function startAutoDownload() { + // One file request at a time. + if (isDownloading) { + console.log("WARNIKNG: Clara.io FBX: Prepare only one download at a time"); + return; + } + // User must be able to write to Asset Server. if (!canWriteAssets) { console.log("ERROR: Clara.io FBX: File download cancelled because no permissions to write to Asset Server");