Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit 16a72f5

Browse files
authored
fix: update API URL for watch2gether (#527)
1 parent 50ebddd commit 16a72f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/meetings/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ async def create_watch2gether(api_key: str, video_url: str | None = None) -> str
145145
"""Create and return a watch2gether URL via the watch2gether API."""
146146
async with aiohttp.ClientSession() as client:
147147
payload = {"w2g_api_key": api_key, "share": video_url}
148-
resp = await client.post("https://w2g.tv/rooms/create.json", json=payload)
148+
resp = await client.post("https://api.w2g.tv/rooms/create.json", json=payload)
149149
resp.raise_for_status()
150150
data = await resp.json()
151151
stream_key = data["streamkey"]

0 commit comments

Comments
 (0)