Commit d5ae73d6 authored by Romain Courteaud's avatar Romain Courteaud

Release 3.45.0

parent 91bcd115
Pipeline #21069 passed with stage
in 0 seconds
......@@ -26,7 +26,7 @@ TESTDIR = test
EXAMPLEDIR = examples
EXTERNALDIR = external
VERSION = 3.44.0
VERSION = 3.45.0
JIOVERSION = ${DISTDIR}/jio-v${VERSION}.js
JIOLATEST = ${DISTDIR}/jio-latest.js
JIONODEVERSION = ${DISTDIR}/jio-v${VERSION}-node.js
......
......@@ -8624,7 +8624,7 @@ return new Parser;
value = [value];
}
for (i = 0; i < value.length; i += 1) {
if (typeof value[i] === 'object') {
if ((value[i] !== null) && (typeof value[i] === 'object')) {
new_value[i] = value[i].content;
} else {
new_value[i] = value[i];
......
......@@ -6822,7 +6822,7 @@ return new Parser;
value = [value];
}
for (i = 0; i < value.length; i += 1) {
if (typeof value[i] === 'object') {
if ((value[i] !== null) && (typeof value[i] === 'object')) {
new_value[i] = value[i].content;
} else {
new_value[i] = value[i];
......
This diff is collapsed.
This diff is collapsed.
{
"name": "jio",
"version": "v3.44.0",
"version": "v3.45.0",
"license": "GPLv3+",
"author": "Nexedi SA",
"contributors": [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment