Skip to content

Commit

Permalink
🐛 Fix issue with wronlgy defined paramter for Google Drive
Browse files Browse the repository at this point in the history
  • Loading branch information
janober committed May 17, 2020
1 parent c791c27 commit 718929c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Google/GoogleDrive.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ export class GoogleDrive implements INodeType {

let queryCorpora = '';
if (options.corpora) {
queryCorpora = (options.corpora as string[]).join(', ');
queryCorpora = options.corpora as string;
}

let driveId : string | undefined;
Expand Down

0 comments on commit 718929c

Please sign in to comment.