From f0a5e8df02331ae015dbfa8cd28324a99e0203b3 Mon Sep 17 00:00:00 2001 From: TJ Porter Date: Wed, 17 Jan 2024 15:46:18 -0600 Subject: [PATCH] Fixed #222 [FIX] Fixed missing uri in digest dictionary for old hash method --- pyVoIP/SIP/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyVoIP/SIP/client.py b/pyVoIP/SIP/client.py index 04943a2..e45d6cb 100644 --- a/pyVoIP/SIP/client.py +++ b/pyVoIP/SIP/client.py @@ -478,6 +478,7 @@ def gen_digest( "nonce": nonce, "algorithm": algo, "digest": hash_func(HA3.encode("utf8")), + "uri": uri, "username": username, "opaque": opaque, }