braid-text 0.2.60 → 0.2.61
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/index.js +1 -1
- package/package.json +1 -1
- package/test/test.html +1 -1
package/index.js
CHANGED
|
@@ -81,7 +81,7 @@ braid_text.serve = async (req, res, options = {}) => {
|
|
|
81
81
|
unknowns.push(event)
|
|
82
82
|
}
|
|
83
83
|
if (unknowns.length)
|
|
84
|
-
return my_end(309, '', "Version Unknown", {
|
|
84
|
+
return my_end(309, '', "Version Unknown Here", {
|
|
85
85
|
Version: ascii_ify(unknowns.map(e => JSON.stringify(e)).join(', '))
|
|
86
86
|
})
|
|
87
87
|
|
package/package.json
CHANGED
package/test/test.html
CHANGED
|
@@ -1276,7 +1276,7 @@ runTest(
|
|
|
1276
1276
|
version: ['hi-5']
|
|
1277
1277
|
})
|
|
1278
1278
|
if (r.status !== 309) throw 'expected 309, got: ' + r.status
|
|
1279
|
-
if (r.statusText !== 'Version Unknown') throw 'unexpected status text: ' + r.statusText
|
|
1279
|
+
if (r.statusText !== 'Version Unknown Here') throw 'unexpected status text: ' + r.statusText
|
|
1280
1280
|
if (r.ok) throw 'found version we should not have found'
|
|
1281
1281
|
|
|
1282
1282
|
var r = await braid_fetch(`/${key}`, {
|