Skip to content

Commit

Permalink
Hotfix inbound parsing matching for v1. ref #910
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Sep 19, 2023
1 parent e53e80b commit 258290a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lemarche/conversations/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ def get_info_from_email_prefix(email_prefix: str) -> list:
kind_sender = email_prefix_infos[1]
else: # version 1
version = 1
uuid = email_prefix[-1]
uuid = email_prefix_infos[-1]
kind_sender = None # not useful
return version, uuid, kind_sender

0 comments on commit 258290a

Please sign in to comment.