You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To me it looks like that the way the original unsubscribe links are encoded does not match the way simple-login would handle them.
In app/handler/unsubscribe_encoder.py, line 100: return f"{config.URL}/dashboard/unsubscribe/encoded?data={encoded}"
In app/dashboard/views/unsubscribe.py, line 76: @dashboard_bp.route("/unsubscribe/encoded/<encoded_request>", methods=["GET"])
I.e. the links did not work for me, unless I changed the URL format from /dashboard/unsubscribe/encoded?data=DATA to /dashboard/unsubscribe/encoded/DATA.
The text was updated successfully, but these errors were encountered:
To me it looks like that the way the original unsubscribe links are encoded does not match the way simple-login would handle them.
In
app/handler/unsubscribe_encoder.py
, line 100:return f"{config.URL}/dashboard/unsubscribe/encoded?data={encoded}"
In
app/dashboard/views/unsubscribe.py
, line 76:@dashboard_bp.route("/unsubscribe/encoded/<encoded_request>", methods=["GET"])
I.e. the links did not work for me, unless I changed the URL format from
/dashboard/unsubscribe/encoded?data=DATA
to/dashboard/unsubscribe/encoded/DATA
.The text was updated successfully, but these errors were encountered: