comment telemetry must be >=3 channels
This commit is contained in:
parent
5581f651e0
commit
2dd7a40c8e
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.6.0"
|
||||
__version__ = '0.6.1'
|
||||
|
|
|
|||
Loading…
Reference in New Issue