mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
🐛 Fix issue with Google Sheets with non-latin Sheet names #961
This commit is contained in:
parent
6064aa1a5a
commit
9e97722c63
|
@ -611,6 +611,7 @@ export class GoogleSheets implements INodeType {
|
|||
let range = '';
|
||||
if (operation !== 'delete') {
|
||||
range = this.getNodeParameter('range', 0) as string;
|
||||
range = encodeURIComponent(range);
|
||||
}
|
||||
|
||||
const options = this.getNodeParameter('options', 0, {}) as IDataObject;
|
||||
|
|
Loading…
Reference in a new issue