diff options
-rw-r--r-- | b4/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/b4/__init__.py b/b4/__init__.py index 7439fb8..f54a389 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -1540,6 +1540,9 @@ class LoreMessage: if not mperson and lname not in nonperson: logger.debug('Ignoring %s (not a recognized non-person trailer)', line) continue + if re.search(r'https?://', ovalue): + logger.debug('Ignoring a non-recognized link trailer') + continue extinfo = None mextinfo = re.search(r'(.*\S+)(\s+#[^#]+)$', ovalue) |