Skip to content

Commit

Permalink
fix looping issue in progress parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
mmenanno committed Jun 18, 2024
1 parent 5afa249 commit 95564f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/mkvpropedit/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- Fix invalid plugin tags
- Update plugin priority to 99
- Fix issue with command progress parsing that would create a loop

**<span style="color:#56adda">0.0.1</span>**

Expand Down
2 changes: 1 addition & 1 deletion source/mkvpropedit/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def parse_progress(line_text):
if match:
progress = match.group(1)
else:
progress = '0'
progress = ''

return {
'percent': progress
Expand Down

0 comments on commit 95564f2

Please sign in to comment.