Merge branch 'develop' into schedule-note

This commit is contained in:
かっこかり 2023-11-09 17:43:46 +09:00 committed by GitHub
commit 31d811f145
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 49 additions and 16 deletions

View file

@ -769,7 +769,11 @@ async function post(ev?: MouseEvent) {
// plugin
if (notePostInterruptors.length > 0) {
for (const interruptor of notePostInterruptors) {
postData = await interruptor.handler(deepClone(postData));
try {
postData = await interruptor.handler(deepClone(postData));
} catch (err) {
console.error(err);
}
}
}