aboutsummaryrefslogtreecommitdiff
path: root/src/server/ApiManagers/FireflyManager.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/ApiManagers/FireflyManager.ts')
-rw-r--r--src/server/ApiManagers/FireflyManager.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/ApiManagers/FireflyManager.ts b/src/server/ApiManagers/FireflyManager.ts
index e75ede9df..e5e030b0f 100644
--- a/src/server/ApiManagers/FireflyManager.ts
+++ b/src/server/ApiManagers/FireflyManager.ts
@@ -302,7 +302,8 @@ export default class FireflyManager extends ApiManager {
.then(dropboxStructureUrl => {
if (dropboxStructureUrl instanceof Error) {
_invalid(res, dropboxStructureUrl.message);
- throw new Error('Error uploading images to dropbox');
+ console.log('res:', res, 'error: ', dropboxStructureUrl, 'message: ', dropboxStructureUrl.message)
+ //throw new Error('Error uploading images to dropbox');
}
return { styleUrl, structureUrl: dropboxStructureUrl };
})