diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-23 23:13:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-23 23:13:54 +0100 |
| commit | b082fb6a16e8f6b0b81677debb5c8d22c585421a (patch) | |
| tree | d1accc989f4970fe7071438bbd37c9313b06c19d /src | |
| parent | 7910e19cf145cbdc99fbf1015add6f8eb792e160 (diff) | |
Add another test and allow spaces at the end of time/position lines.
Diffstat (limited to 'src')
| -rw-r--r-- | src/subrip_reader.cc | 4 |
1 files changed, 4 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"); |
