🐛 Bug fix for Google Calendar (#1096)
This commit is contained in:
@@ -71,13 +71,6 @@ export class GoogleCalendar implements INodeType {
|
||||
|
||||
methods = {
|
||||
loadOptions: {
|
||||
|
||||
|
||||
// "conferenceProperties": {
|
||||
// "allowedConferenceSolutionTypes": [
|
||||
// "hangoutsMeet"
|
||||
// ]
|
||||
|
||||
// Get all the calendars to display them to user so that he can
|
||||
// select them easily
|
||||
async getConferenceSolutations(
|
||||
@@ -550,11 +543,11 @@ export class GoogleCalendar implements INodeType {
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (Array.isArray(responseData)) {
|
||||
returnData.push.apply(returnData, responseData as IDataObject[]);
|
||||
} else if (responseData !== undefined) {
|
||||
returnData.push(responseData as IDataObject);
|
||||
if (Array.isArray(responseData)) {
|
||||
returnData.push.apply(returnData, responseData as IDataObject[]);
|
||||
} else if (responseData !== undefined) {
|
||||
returnData.push(responseData as IDataObject);
|
||||
}
|
||||
}
|
||||
return [this.helpers.returnJsonArray(returnData)];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user