Closed
Description
Problem to solve
Django's urlsafe_base64_encode
strips the trailing =
which then causes base64Decode
to fail.
Proposal
It would be nice if base64Decode
could handle missing padding. urlsafe_base64_decode
in Django achieves this by appending any missing =
before decoding: https://github.com/django/django/blob/e7a9d756eedd0317132c81c3695d4a34bba5dcd3/django/utils/http.py#L185-L194