fix content type
This commit is contained in:
parent
cd5894429c
commit
487e15e429
@ -7,7 +7,7 @@
|
||||
"48": "icon-48.png",
|
||||
"128": "icon-128.png"
|
||||
},
|
||||
"version": "107.0",
|
||||
"version": "108.0",
|
||||
"manifest_version": 3,
|
||||
"host_permissions": ["http://127.0.0.1:4000/jsonrpc"],
|
||||
"permissions": ["tabs"],
|
||||
|
@ -8,7 +8,7 @@ providers.set("seafile.purser.it", "seafile")
|
||||
const random = () => {
|
||||
const arr = new Uint8Array(32)
|
||||
window.crypto.getRandomValues(arr)
|
||||
return btoa(arr)
|
||||
return [...arr].map(x => x.toString(16).padStart(2, "0")).join("")
|
||||
}
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
@ -75,7 +75,7 @@ document.addEventListener("DOMContentLoaded", () => {
|
||||
method: "POST",
|
||||
body: JSON.stringify(req),
|
||||
headers: {
|
||||
"Content-Type": "application/json charset=utf-8"
|
||||
"Content-Type": "application/json; charset=utf-8"
|
||||
}
|
||||
}).then(resp => console.log(resp))
|
||||
} catch(e) {
|
||||
|
Loading…
Reference in New Issue
Block a user