From 258290a0dc917cf0c6446b42cf4bdd2ce261d730 Mon Sep 17 00:00:00 2001 From: Raphael Odini Date: Tue, 19 Sep 2023 14:57:15 +0200 Subject: [PATCH] Hotfix inbound parsing matching for v1. ref #910 --- lemarche/conversations/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemarche/conversations/utils.py b/lemarche/conversations/utils.py index 76c858532..23e338bde 100644 --- a/lemarche/conversations/utils.py +++ b/lemarche/conversations/utils.py @@ -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