We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7208656 commit b19f94dCopy full SHA for b19f94d
1 file changed
frontend/src/hyperglosae.js
@@ -59,8 +59,7 @@ function Hyperglosae(logger) {
59
reader.readAsArrayBuffer(attachment);
60
reader.onload = () => {
61
const arrayBuffer = reader.result;
62
-
63
- fetch(`${service}/${id}/${attachment.name}`, {
+ fetch(`${service}/${id}/${attachment.name.replaceAll('#', '%23')}`, {
64
method: 'PUT',
65
headers: {
66
// ETag is the header that carries the current rev.
0 commit comments