🐛 Fix issue with wronlgy defined paramter for Google Drive

This commit is contained in:
Jan Oberhauser 2020-05-17 10:45:55 +02:00
parent c791c27859
commit 718929cb3b

View file

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