@webqit/webflo 0.20.13 → 0.20.14
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/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"vanila-javascript"
|
|
13
13
|
],
|
|
14
14
|
"homepage": "https://webqit.io/tooling/webflo",
|
|
15
|
-
"version": "0.20.
|
|
15
|
+
"version": "0.20.14",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@octokit/webhooks": "^7.15.1",
|
|
46
46
|
"@webqit/backpack": "^0.1.12",
|
|
47
|
-
"@webqit/oohtml-ssr": "^2.2.
|
|
47
|
+
"@webqit/oohtml-ssr": "^2.2.2",
|
|
48
48
|
"@webqit/use-live": "^0.5.44",
|
|
49
49
|
"@webqit/util": "^0.8.11",
|
|
50
50
|
"chokidar": "^4.0.3",
|
|
@@ -364,7 +364,7 @@ export async function parseHttpMessage(httpMessage) {
|
|
|
364
364
|
const contentType = httpMessage.headers.get('Content-Type') || '';
|
|
365
365
|
if (contentType === 'application/x-www-form-urlencoded' || contentType.startsWith('multipart/form-data')) {
|
|
366
366
|
const fd = await httpMessage.formData();
|
|
367
|
-
result = fd && await formData.json.value(fd);
|
|
367
|
+
result = fd && await formData.prototype.json.value.call(fd);
|
|
368
368
|
} else if (contentType.startsWith('application/json')/*can include charset*/) {
|
|
369
369
|
result = await httpMessage.json();
|
|
370
370
|
} else /*if (contentType === 'text/plain')*/ {
|