From 503ab8635614cb36706b856801c51c73574f033b Mon Sep 17 00:00:00 2001 From: Ali Sayyah Date: Sat, 20 Dec 2025 16:34:21 -0800 Subject: [PATCH] Fix lint error for deprecated comment --- jsep.go | 1 + 1 file changed, 1 insertion(+) diff --git a/jsep.go b/jsep.go index a0960f3..9ec2f6c 100644 --- a/jsep.go +++ b/jsep.go @@ -235,6 +235,7 @@ func (d *MediaDescription) WithMediaSource(ssrc uint32, cname, streamLabel, labe } // WithCandidate adds an ICE candidate to the media description. +// // Deprecated: use WithICECandidate instead. func (d *MediaDescription) WithCandidate(value string) *MediaDescription { return d.WithValueAttribute("candidate", value)