Skip to content

Commit

Permalink
remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
wunter8 authored Mar 20, 2024
1 parent 7fd5f0b commit 83356f5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,6 @@ func (s *Server) parsePublishParams(r *http.Request, m *message) (cache bool, fi
}
call = readParam(r, "x-call", "call")
if call != "" && (s.config.TwilioAccount == "" || s.userManager == nil) {
print("call: %s", call)
return false, false, "", "", false, false, errHTTPBadRequestPhoneCallsDisabled
} else if call != "" && !isBoolValue(call) && !phoneNumberRegex.MatchString(call) {
return false, false, "", "", false, false, errHTTPBadRequestPhoneNumberInvalid
Expand Down

0 comments on commit 83356f5

Please sign in to comment.