🐛 Fix issue with Google Sheets with non-latin Sheet names #961

This commit is contained in:
Jan Oberhauser 2020-09-20 13:37:29 +02:00
parent 6064aa1a5a
commit 9e97722c63

View file

@ -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;