mirror of
https://github.com/livekit/livekit.git
synced 2026-06-04 00:01:43 +00:00
Protect against nil clientInfo (#4546)
This commit is contained in:
@@ -246,6 +246,10 @@ func getUserAgentParser() *uaparser.Parser {
|
||||
}
|
||||
|
||||
func AugmentClientInfo(ci *livekit.ClientInfo, req *http.Request) {
|
||||
if ci == nil {
|
||||
return
|
||||
}
|
||||
|
||||
// get real address (forwarded http header) - check Cloudflare headers first, fall back to X-Forwarded-For
|
||||
ci.Address = GetClientIP(req)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user