diff options
| -rw-r--r-- | src/subrip_reader.cc | 4 | ||||
| -rw-r--r-- | test/subrip_reader_test.cc | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/subrip_reader.cc b/src/subrip_reader.cc index a82862c..ea693db 100644 --- a/src/subrip_reader.cc +++ b/src/subrip_reader.cc @@ -113,6 +113,10 @@ SubripReader::read (function<optional<string> ()> get_line) case METADATA: { vector<string> p; + + /* Further trim this line, removing spaces from the end */ + trim_right_if (*line, boost::is_any_of (" ")); + boost::algorithm::split (p, *line, boost::algorithm::is_any_of (" ")); if (p.size() != 3 && p.size() != 7) { throw SubripError (*line, "a time/position line"); diff --git a/test/subrip_reader_test.cc b/test/subrip_reader_test.cc index a20cc07..cb72e28 100644 --- a/test/subrip_reader_test.cc +++ b/test/subrip_reader_test.cc @@ -369,4 +369,5 @@ BOOST_AUTO_TEST_CASE (subrip_read_test) test ("sintel_en.srt"); test ("sintel_fr.srt"); test ("Fight.Club.1999.720p.BRRip.x264-x0r.srt"); + test ("EU13.srt"); } |
