Small improvement on EditImage-Node

This commit is contained in:
Jan Oberhauser 2020-11-19 00:17:29 +01:00
parent eafbe424b9
commit c4518f8f17

View file

@ -785,6 +785,10 @@ export class EditImage implements INodeType {
files.forEach((file: string) => {
const pathParts = pathParse(file);
if (!pathParts.ext) {
return;
}
returnData.push({
name: pathParts.name,
value: file,