Commit 18cf665b authored by Vincent Bechu's avatar Vincent Bechu

Release Version 3.23.1

Fix getAttachment when blob is undefined
parent 1a8758a3
......@@ -13094,7 +13094,9 @@ return new Parser;
end_index -= 1;
}
function resolver(result) {
result_list.push(result);
if (result.blob !== undefined) {
result_list.push(result);
}
resolve(result_list);
}
function getPart(i) {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"name": "jio",
"version": "v3.23.0",
"version": "v3.23.1",
"license": "LGPLv3",
"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