Skip to content
Snippets Groups Projects
Commit 9d83fcd7 authored by Kien Le's avatar Kien Le
Browse files

Fix log header check

parent 145fa85e
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ def detect_log_packet_format(packet: List[str]) -> Optional[LogFileFormat]: ...@@ -27,7 +27,7 @@ def detect_log_packet_format(packet: List[str]) -> Optional[LogFileFormat]:
return 'logpeek' return 'logpeek'
elif packet[0].startswith('rt2ms'): elif packet[0].startswith('rt2ms'):
return 'rt2ms' return 'rt2ms'
elif packet[0].startswith('sohstationviewer'): elif packet[0].startswith('SOHStationViewer'):
return 'sohstationviewer' return 'sohstationviewer'
packet_start = packet[0] packet_start = packet[0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment