Proper error handling for creating a link without internet (#577)
* Proper error handling for creating a link without internet * shuffle code a bit Co-authored-by: David Luzar <luzar.david@gmail.com>
This commit is contained in:
parent
1d9cdf4d46
commit
4b0f788945
@ -144,7 +144,9 @@ export async function exportToBackend(
|
||||
elements: readonly ExcalidrawElement[],
|
||||
appState: AppState,
|
||||
) {
|
||||
const response = await fetch(BACKEND_POST, {
|
||||
let response;
|
||||
try {
|
||||
response = await fetch(BACKEND_POST, {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: serializeAsJSON(elements, appState),
|
||||
@ -164,6 +166,10 @@ export async function exportToBackend(
|
||||
} else {
|
||||
window.alert(i18n.t("alerts.couldNotCreateShareableLink"));
|
||||
}
|
||||
} catch (e) {
|
||||
window.alert(i18n.t("alerts.couldNotCreateShareableLink"));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
export async function importFromBackend(id: string | null) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user