diff options
-rw-r--r-- | b4/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/b4/__init__.py b/b4/__init__.py index 5a8466b..1c6d89b 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -988,7 +988,7 @@ class LoreMessage: else: # See if date is included in the h: field sh = hdata.get('h') - if 'date' in sh.split(':'): + if 'date' in sh.lower().split(':'): signtime = self.date self.msg._headers.append((hn, hval)) # noqa |