Skip to content
Snippets Groups Projects
Commit 3f1cfa0a authored by Lan Dam's avatar Lan Dam
Browse files

Merge branch 'i244_fix_detecting_multiplex' into 'master'

fix bug in checking a data file is multiplexed

Closes #224 and #223

See merge request !253
parents ae395df6 895eda74
No related branches found
No related tags found
1 merge request!253fix bug in checking a data file is multiplexed
Pipeline #3574 passed with stage
in 7 minutes and 21 seconds
......@@ -291,7 +291,7 @@ def get_data_type_from_file(
return 'RT130', False
return None
if is_multiplex is None:
if is_multiplex in [None, False]:
chans_in_stream.add(chan)
if len(chans_in_stream) > 1:
is_multiplex = True
......
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