mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -08:00
🐛 Fix Gmail label filters (#1499)
* Change array format in the qs stringify options * Fix lint
This commit is contained in:
parent
44100dc675
commit
e9bd518592
|
@ -41,6 +41,9 @@ export async function googleApiRequest(this: IExecuteFunctions | IExecuteSingleF
|
||||||
body,
|
body,
|
||||||
qs,
|
qs,
|
||||||
uri: uri || `https://www.googleapis.com${endpoint}`,
|
uri: uri || `https://www.googleapis.com${endpoint}`,
|
||||||
|
qsStringifyOptions:{
|
||||||
|
arrayFormat: 'repeat',
|
||||||
|
},
|
||||||
json: true,
|
json: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue