1
0
Fork 0

Fix error in startup emojis check

This commit is contained in:
Cadence Ember 2024-01-12 14:33:23 +13:00
parent 600ca1a11d
commit 7d4379a099
2 changed files with 8 additions and 2 deletions

View file

@ -39,7 +39,7 @@ async function mreq(method, url, body, extra = {}) {
const res = await fetch(baseUrl + url, opts)
const root = await res.json()
if (!res.ok || root.errcode) throw new MatrixServerError(root, opts)
if (!res.ok || root.errcode) throw new MatrixServerError(root, {baseUrl, url, ...opts})
return root
}