fix error message

This commit is contained in:
Joel Wetzell
2026-02-09 21:02:44 -06:00
parent d69d3a370d
commit a9245ab88c

View File

@@ -94,7 +94,7 @@ func init() {
specificUserAgentString, ok := userAgent.(string) specificUserAgentString, ok := userAgent.(string)
if !ok { if !ok {
return nil, errors.New("sip.call.server userAgent must be a string") return nil, errors.New("sip.dtmf.server userAgent must be a string")
} }
userAgentString = specificUserAgentString userAgentString = specificUserAgentString
} }