Skip to content

Commit

Permalink
Allow google Meet creation #138
Browse files Browse the repository at this point in the history
  • Loading branch information
YukiGasai committed Jun 21, 2023
1 parent 88429ee commit b1c2ea8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "google-calendar",
"name": "Google Calendar",
"version": "1.9.16",
"version": "1.9.17",
"minAppVersion": "0.12.0",
"description": "Interact with your Google Calendar from Inside Obsidian",
"author": "YukiGasai",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-calendar",
"version": "1.9.16",
"version": "1.9.17",
"description": "Interact with your Google Calendar from Inside Obsidian",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/googleApi/GoogleCreateEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export async function googleCreateEvent(event: GoogleEvent | any): Promise<Googl
throw new GoogleApiError("Could not create Google Event because no default calendar selected in Settings", null, 999, {error: "No calendar set"})
}

const createdEvent = await callRequest(`https://www.googleapis.com/calendar/v3/calendars/${calenderId}/events`, 'POST', event)
const createdEvent = await callRequest(`https://www.googleapis.com/calendar/v3/calendars/${calenderId}/eventsconferenceDataVersion=1`, 'POST', event)
return createdEvent;
}

Expand Down

0 comments on commit b1c2ea8

Please sign in to comment.