Skip to content

Commit 1addf32

Browse files
waleedlatif1claude
andcommitted
fix(selectors): convert Zoom meeting IDs to strings for consistency
Zoom API returns numeric meeting IDs. Convert with String() to match the string ID convention used by all other selector routes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6b301b7 commit 1addf32

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/api/tools/zoom/meetings

1 file changed

+1
-1
lines changed

apps/sim/app/api/tools/zoom/meetings/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export async function POST(request: Request) {
6767

6868
const data = await response.json()
6969
const meetings = (data.meetings || []).map((meeting: { id: number; topic: string }) => ({
70-
id: meeting.id,
70+
id: String(meeting.id),
7171
name: meeting.topic,
7272
}))
7373

0 commit comments

Comments
 (0)