1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2025-12-13 18:25:07 +00:00

Fix some image proxy headers

This commit is contained in:
Cadence Ember
2020-06-25 03:42:22 +12:00
parent 176a8fe4d4
commit ff75c39aa9

View File

@@ -10,10 +10,12 @@ class NodeFetch {
} }
response() { response() {
return this.instance.then(res => ({ return this.instance.then(res => {
status: res.status, return {
headers: new Map(Object.entries(res.headers)) status: res.status,
})) headers: res.headers
}
})
} }
json() { json() {