From dd00e0fec2bb9fca72264754883dce655b5b411a Mon Sep 17 00:00:00 2001 From: Konstantin Ryabitsev Date: Wed, 13 May 2020 17:04:55 -0400 Subject: Fix crasher for incomplete threads Don't crash if the message in the References: is not available in the thread. Reported-by: Bjorn Helgaas Signed-off-by: Konstantin Ryabitsev --- b4/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'b4/__init__.py') diff --git a/b4/__init__.py b/b4/__init__.py index bf4898b..ecd746f 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -275,8 +275,11 @@ class LoreMailbox: if pmsg is None: # Can't find the message we're replying to here continue - else: + elif fmsg.in_reply_to in self.msgid_map: pmsg = self.msgid_map[fmsg.in_reply_to] + else: + logger.debug(' missing message, skipping: %s', fmsg.in_reply_to) + continue trailers, mismatches = fmsg.get_trailers(sloppy=sloppytrailers) for tname, tvalue in mismatches: -- cgit v1.2.3