Skip to content

Commit 09cb4c3

Browse files
committed
correct the parameters
1 parent ee918f4 commit 09cb4c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def all_meetings(user_id) -> list:
6262
live_meetings = zoom_request(
6363
requests.get,
6464
f"{ZOOM_API}users/{user_id}/meetings",
65-
params={"type": "scheduled", "page_size": 300, "next_page_token": next_page_token}
65+
params={"type": "live", "page_size": 300}
6666
)["meetings"]
6767

6868
if live_meetings:

0 commit comments

Comments
 (0)