Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/lib/helpers/subtitlehelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def __convert_web_vtt_to_srt(webvvt):
result = ""
for line in webvvt.split("\n"):
line = line.strip()
if line.endswith("WEBVTT") or line.startswith("X-TIMESTAMP"):
if line.startswith("WEBVTT") or line.startswith("X-TIMESTAMP"):
continue
if not line:
continue
Expand Down
Loading