From 02643e2d0df9b4929d44af83a6eaf7918af9362e Mon Sep 17 00:00:00 2001 From: lifegpc Date: Tue, 2 Dec 2025 00:15:15 +0800 Subject: [PATCH] fix bug --- convert_lrc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert_lrc.py b/convert_lrc.py index 4a059d7..f8b40f3 100644 --- a/convert_lrc.py +++ b/convert_lrc.py @@ -76,7 +76,7 @@ class Lyric: re.append({'time': max(ltmp, round(i['time'] - 0.01, 2)), 'data': tmp}) tmp = None - elif i['time'] == ltmp: + elif i['time'] == ltmp and i['time'] != 0: if tmp is None: tmp = i['data'] else: