From ff0cb7197ffb4819384ac9ddcb563a2b3bf25dfa Mon Sep 17 00:00:00 2001 From: Freddy Boulton Date: Tue, 25 Feb 2025 19:07:40 -0500 Subject: [PATCH] Fix credentials (#75) Co-authored-by: Freddy Boulton --- backend/fastrtc/credentials.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/fastrtc/credentials.py b/backend/fastrtc/credentials.py index ea5e83a..884753e 100644 --- a/backend/fastrtc/credentials.py +++ b/backend/fastrtc/credentials.py @@ -8,7 +8,7 @@ def get_hf_turn_credentials(token=None): if token is None: token = os.getenv("HF_TOKEN") credentials = requests.get( - "https://freddyaboulton-turn-server-login.hf.space/credentials", + "https://fastrtc-turn-server-login.hf.space/credentials", headers={"X-HF-Access-Token": token}, ) if not credentials.status_code == 200: diff --git a/pyproject.toml b/pyproject.toml index 54d91d8..f119540 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "hatchling.build" [project] name = "fastrtc" -version = "0.0.5" +version = "0.0.5.post1" description = "The realtime communication library for Python" readme = "README.md" license = "apache-2.0"