Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rinarakaki committed Feb 1, 2025
1 parent 800ab1f commit 014414c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyVoIP/SIP/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
debug = pyVoIP.debug


UNAUTORIZED_RESPONSE_CODES = [
UNAUTHORIZED_RESPONSE_CODES = [
ResponseCode.UNAUTHORIZED,
ResponseCode.PROXY_AUTHENTICATION_REQUIRED,
]
Expand Down Expand Up @@ -1122,7 +1122,7 @@ def invite(
type(response) is SIPResponse
and (
response.status
not in UNAUTORIZED_RESPONSE_CODES + INVITE_OK_RESPONSE_CODES
not in UNAUTHORIZED_RESPONSE_CODES + INVITE_OK_RESPONSE_CODES
)
or response.headers["Call-ID"] != call_id
):
Expand Down

0 comments on commit 014414c

Please sign in to comment.