diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2020-02-11 15:48:06 -0500 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-02-11 15:48:06 -0500 |
commit | ec5c878fb4c5f7e03fdd214c0841cf2ebf983e8c (patch) | |
tree | 35ac2ab43ed6122256de97fb2b302b038c8b430a /src/server/ApiManagers/DownloadManager.ts | |
parent | ed947b320de772d63e7b462e78910db11c0a8fd3 (diff) |
refactored image upload data response format, google docs working for specific interactions
Diffstat (limited to 'src/server/ApiManagers/DownloadManager.ts')
-rw-r--r-- | src/server/ApiManagers/DownloadManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/ApiManagers/DownloadManager.ts b/src/server/ApiManagers/DownloadManager.ts index fad5e6789..01d2dfcad 100644 --- a/src/server/ApiManagers/DownloadManager.ts +++ b/src/server/ApiManagers/DownloadManager.ts @@ -254,7 +254,7 @@ async function writeHierarchyRecursive(file: Archiver.Archiver, hierarchy: Hiera // and dropped in the browser and thus hosted remotely) so we upload it // to our server and point the zip file to it, so it can bundle up the bytes const information = await DashUploadUtils.UploadImage(result); - path = information instanceof Error ? "" : information.serverAccessPaths[SizeSuffix.Original]; + path = information instanceof Error ? "" : information.accessPaths[SizeSuffix.Original].server; } // write the file specified by the path to the directory in the // zip file given by the prefix. |