comment telemetry must be >=3 channels

This commit is contained in:
Rossen Georgiev 2014-11-29 22:33:15 +00:00
parent 5581f651e0
commit 2dd7a40c8e
2 changed files with 2 additions and 2 deletions

View File

@ -656,7 +656,7 @@ def _parse_comment_telemetry(text):
Looks for base91 telemetry found in comment field
Returns [remaining_text, telemetry]
"""
match = re.findall(r"^(.*?)\|([!-{]{2,14})\|(.*)$", text)
match = re.findall(r"^(.*?)\|([!-{]{6,14})\|(.*)$", text)
if match and len(match[0][1]) % 2 == 0:
text, telemetry, post = match[0]
text += post

View File

@ -1 +1 @@
__version__ = "0.6.0"
__version__ = '0.6.1'