diff options
author | bobzel <zzzman@gmail.com> | 2025-01-09 00:02:10 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-01-09 00:02:10 -0500 |
commit | dd0526a0a256fb3f1de9e0a2508566adcd6cd7e9 (patch) | |
tree | d383cfaee70a3dfef0b3714c72fc46f01cbe0b69 /src/client/Network.ts | |
parent | f6a2df5bf15a3139e7fe35acc7fbf9d49b33d279 (diff) |
fixed sizing of images created by firefly. added error message for failed firefly request.
Diffstat (limited to 'src/client/Network.ts')
-rw-r--r-- | src/client/Network.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/Network.ts b/src/client/Network.ts index 9afdc844f..3b0406141 100644 --- a/src/client/Network.ts +++ b/src/client/Network.ts @@ -15,7 +15,7 @@ export namespace Networking { return (await fetch(relativeRoute)).text(); } - export async function PostToServer(relativeRoute: string, body?: unknown) { + export function PostToServer(relativeRoute: string, body?: unknown) { const options = { uri: ClientUtils.prepend(relativeRoute), method: 'POST', |