aboutsummaryrefslogtreecommitdiff
path: root/src/server/ApiManagers/FireflyManager.ts
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2025-04-03 03:36:07 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2025-04-03 03:36:07 -0400
commite9bc998554515ecbe86f7d00b01d3cf5d2048b6e (patch)
treee6dde2332dbe01a24a292f851b13b1dd3ae7c3df /src/server/ApiManagers/FireflyManager.ts
parente22bdd2db60954445c41f7e2ca75a8944de5288f (diff)
Firefly integration and some UI changes
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 };
})