Compare commits
2 commits
6c3fa294d6
...
65520b70f2
Author | SHA1 | Date | |
---|---|---|---|
65520b70f2 | |||
94e3fe49b3 |
1 changed files with 8 additions and 3 deletions
11
script.js
11
script.js
|
@ -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}`
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue