From c3140861027eca8a28c3531f03ce1018ca3aede8 Mon Sep 17 00:00:00 2001 From: Anton Afanasyeu Date: Sun, 28 Jun 2026 22:30:20 +0200 Subject: [PATCH] sfu: fix JanusClient info() endpoint URL (/info not /) Co-authored-by: Cursor --- src/JanusClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JanusClient.php b/src/JanusClient.php index 0a0486a..2912baa 100644 --- a/src/JanusClient.php +++ b/src/JanusClient.php @@ -20,7 +20,7 @@ final class JanusClient /** GET /janus/info — returns server info or null. */ public function info(): ?array { - return $this->get(''); + return $this->get('/info'); } /** Create a new Janus session. Returns session_id or null. */