mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
🐛 Fix issue with wronlgy defined paramter for Google Drive
This commit is contained in:
parent
c791c27859
commit
718929cb3b
|
@ -933,7 +933,7 @@ export class GoogleDrive implements INodeType {
|
||||||
|
|
||||||
let queryCorpora = '';
|
let queryCorpora = '';
|
||||||
if (options.corpora) {
|
if (options.corpora) {
|
||||||
queryCorpora = (options.corpora as string[]).join(', ');
|
queryCorpora = options.corpora as string;
|
||||||
}
|
}
|
||||||
|
|
||||||
let driveId : string | undefined;
|
let driveId : string | undefined;
|
||||||
|
|
Loading…
Reference in a new issue