From 95564f26d9532924870eaf48e6b72f1838ea940e Mon Sep 17 00:00:00 2001 From: mmenanno <1358708+mmenanno@users.noreply.github.com> Date: Tue, 18 Jun 2024 12:31:42 -0400 Subject: [PATCH] fix looping issue in progress parsing --- source/mkvpropedit/changelog.md | 1 + source/mkvpropedit/plugin.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source/mkvpropedit/changelog.md b/source/mkvpropedit/changelog.md index 35c35ae87..802fc3957 100644 --- a/source/mkvpropedit/changelog.md +++ b/source/mkvpropedit/changelog.md @@ -2,6 +2,7 @@ - Fix invalid plugin tags - Update plugin priority to 99 +- Fix issue with command progress parsing that would create a loop **0.0.1** diff --git a/source/mkvpropedit/plugin.py b/source/mkvpropedit/plugin.py index 936f5b0aa..6efc9c16f 100644 --- a/source/mkvpropedit/plugin.py +++ b/source/mkvpropedit/plugin.py @@ -68,7 +68,7 @@ def parse_progress(line_text): if match: progress = match.group(1) else: - progress = '0' + progress = '' return { 'percent': progress