braid-text 0.2.41 → 0.2.42

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -180,8 +180,8 @@ braid_text.serve = async (req, res, options = {}) => {
180
180
  // approximation of memory usage for this update
181
181
  body ? body.length :
182
182
  patches.reduce((a, b) => a + b.range.length + b.content.length, 0),
183
- options.put_buffer_max_time,
184
- options.put_buffer_max_space)
183
+ options.recv_buffer_max_time,
184
+ options.recv_buffer_max_space)
185
185
 
186
186
  // make sure we have the necessary parents now
187
187
  var unknowns = []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braid-text",
3
- "version": "0.2.41",
3
+ "version": "0.2.42",
4
4
  "description": "Library for collaborative text over http using braid.",
5
5
  "author": "Braid Working Group",
6
6
  "repository": "braid-org/braid-text",