We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Single-line messages are never parsed because of
tag_block.py: 147: if sentence_num == 1: self.groups[group_id] = { 'line_nums': [self.line_num], 'lines': [line], 'matches': [match], 'times': [time], } return
if sentence_num == 1:
self.groups[group_id] = {
'line_nums': [self.line_num],
'lines': [line],
'matches': [match],
'times': [time],
}
return
i.e. sentence_num == 1 always returns and the subsequent decoding code is unreachable.
Suggested fix: if sentence_num == 1: self.groups[group_id] = { 'line_nums': [], 'lines': [], 'matches': [], 'times': [], }
'line_nums': [],
'lines': [],
'matches': [],
'times': [],
then the data will be appended and, if sentence_num == sentence_total, decoded.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Single-line messages are never parsed because of
tag_block.py: 147:
if sentence_num == 1:
self.groups[group_id] = {
'line_nums': [self.line_num],
'lines': [line],
'matches': [match],
'times': [time],
}
return
i.e. sentence_num == 1 always returns and the subsequent decoding code is unreachable.
Suggested fix:
if sentence_num == 1:
self.groups[group_id] = {
'line_nums': [],
'lines': [],
'matches': [],
'times': [],
}
then the data will be appended and, if sentence_num == sentence_total, decoded.
The text was updated successfully, but these errors were encountered: