mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
🔀 Merge pull request #477 from RicardoE105/feature/spritesheet-file-node
🐛 mismatch between file extension and format
This commit is contained in:
commit
44a2c2377a
|
@ -337,7 +337,7 @@ export class SpreadsheetFile implements INodeType {
|
||||||
} else if (fileFormat === 'ods') {
|
} else if (fileFormat === 'ods') {
|
||||||
wopts.bookType = 'ods';
|
wopts.bookType = 'ods';
|
||||||
} else if (fileFormat === 'xls') {
|
} else if (fileFormat === 'xls') {
|
||||||
wopts.bookType = 'xlml';
|
wopts.bookType = 'xls';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert the data in the correct format
|
// Convert the data in the correct format
|
||||||
|
|
Loading…
Reference in a new issue