Add function to send speaker packages and handle errors

This commit is contained in:
MikeHughes-BIN
2026-01-18 19:05:55 +01:00
parent 7fbf0c59d1
commit 0f548b3012
+10
View File
@@ -500,3 +500,13 @@ function reloadDocuments() {
});
});
}
function sendSpeakerPackages() {
try {
window.submitSpeaker.speaker_submit(speakerAudios);
} catch (error) {
console.log(error);
}
}
window.sendSpeakerPackages = sendSpeakerPackages;