diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-27 23:03:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-27 23:03:15 +0100 |
| commit | df489ce37d6f26ffbad55296a3e684de70348d57 (patch) | |
| tree | c7f1775ae743533ab16a47037ca9d50060cb3e5f /src | |
| parent | d4b8b95e2226522c2aa475f0189362c5c6bc58a3 (diff) | |
Cope with mixed-case subrip tags.
Diffstat (limited to 'src')
| -rw-r--r-- | src/subrip_reader.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subrip_reader.cc b/src/subrip_reader.cc index 45da3ab..02ee20a 100644 --- a/src/subrip_reader.cc +++ b/src/subrip_reader.cc @@ -227,7 +227,7 @@ SubripReader::convert_line (string t, RawSubtitle& p) tag.clear (); state = TEXT; } else { - tag += t[i]; + tag += tolower (t[i]); } break; } |
