Skip to content

Commit

Permalink
fix: add meeting ical parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
faiq-naufal committed May 16, 2024
1 parent 67ce691 commit 331fa24
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ export async function GET(
});
}

const icalString = GenerateIcal(event, 'Asia/Jakarta', host, participant);
const icalString = GenerateIcal(
event,
'meeting',
'Asia/Jakarta',
host,
participant
);
const resp = new Response(icalString);
resp.headers.set(
'Content-Type',
Expand Down

0 comments on commit 331fa24

Please sign in to comment.