Compare commits

...

2 commits

View file

@ -41,14 +41,19 @@ const form = document.getElementById('merge-form');
}, },
body: JSON.stringify({ calendars: calendarsData }) body: JSON.stringify({ calendars: calendarsData })
}) })
.then((response) => response.json()) .then((response) => {
if (!response.ok) {
return response.json().then(err => { throw err; });
}
return response.json();
})
.then((data) => { .then((data) => {
result.innerHTML = `Merged calendar URL: <a href="${data.url}">${data.url}</a>`; result.innerHTML = `Merged calendar URL: <a href="${data.url}">${data.url}</a>`;
console.log('Links added successfully!'); console.log('Links added successfully!');
}) })
.catch((error) => { .catch((error) => {
console.error(error); console.error('Error:', error);
result.innerHTML = 'Error merging calendars'; result.innerHTML = `Error merging calendars: ${error.message}`
}); });
}); });