Skip to content

Commit

Permalink
Removing padding for oob invitation url
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Hale <[email protected]>
  • Loading branch information
jamshale committed Sep 17, 2024
1 parent 17e9f16 commit bbbe6f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def to_url(self, base_url: Optional[str] = None) -> str:
"""
c_json = self.to_json()
oob = bytes_to_b64(c_json.encode("ascii"), urlsafe=True)
oob = bytes_to_b64(c_json.encode("ascii"), urlsafe=True, pad=False)
endpoint = None
if not base_url:
for service_item in self.services:
Expand Down

0 comments on commit bbbe6f7

Please sign in to comment.