Adjusting SELCALL regexp to be less greedy.

This commit is contained in:
Marat Fayzullin 2023-05-24 22:40:31 -04:00
parent a58b884ec1
commit a95a5e124c
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class MultimonParser(ThreadModule):
# FLEX message status
self.reFlex3 = re.compile(r"\d+/\d+/(\S)/\S")
# <mode>: C
self.reSelCall = re.compile(r"(ZVEI1|ZVEI2|ZVEI3|DZVEI|PZVEI|DTMF|EEA|EIA|CCIR):\s+([0-9A-F]+)")
self.reSelCall = re.compile(r"(ZVEI1|ZVEI2|ZVEI3|DZVEI|PZVEI|DTMF|EEA|EIA|CCIR):\s+([0-9A-F]+?)")
self.service = service
self.frequency = 0