@nxtedition/lib 19.8.20 → 19.8.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/couch.js +1 -2
- package/package.json +1 -1
package/couch.js
CHANGED
|
@@ -488,11 +488,10 @@ export function makeCouch(opts) {
|
|
|
488
488
|
method,
|
|
489
489
|
body: typeof body === 'object' && body ? JSON.stringify(body) : body,
|
|
490
490
|
headers,
|
|
491
|
-
dispatcher: client,
|
|
492
491
|
}
|
|
493
492
|
|
|
494
493
|
return new Promise((resolve, reject) =>
|
|
495
|
-
dispatch(req, {
|
|
494
|
+
dispatch(client, req, {
|
|
496
495
|
resolve,
|
|
497
496
|
reject,
|
|
498
497
|
signal,
|