diff options
-rw-r--r-- | becommands/subscribe.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/becommands/subscribe.py b/becommands/subscribe.py index 2522f0c..0a23057 100644 --- a/becommands/subscribe.py +++ b/becommands/subscribe.py @@ -325,6 +325,8 @@ def get_subscribers(extra_strings, type, server, type_root, ['Jane Doe <J@doe.com>', 'John Doe <j@doe.com>'] """ for string in extra_strings: + if not string.startswith(TAG): + continue subscriber,types,servers = _parse_string(string, type_root) type_match = False if type in types: |