Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions common/dispatcher/dispatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ const sendItem = async function (uuid, resolver, message) {
try {
let response = await fetch(dispatcher_url + `?uuid=${uuid}`, {
method: 'POST',
keepalive: true,
body: message
})
if (await response.text() == "done") {
Expand Down
2 changes: 1 addition & 1 deletion common/dispatcher/remote-executor.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</body>
<script src="./dispatcher.js"
crossorigin
integrity="sha256-daCATx8B9i1s6ixqZvCGcGQOv3a+VMoor6aS9UNUoiY=">
integrity="sha256-XZ2RxxHB3PF14zUZkzgB3mgWSn3R8JCPuDfZURvajRI=">
</script>
<script>
const params = new URLSearchParams(window.location.search);
Expand Down