Correct version number when deciding whether or not to fix subtitle IDs. v2.16.17
authorCarl Hetherington <cth@carlh.net>
Sun, 10 Jul 2022 08:44:58 +0000 (10:44 +0200)
committerCarl Hetherington <cth@carlh.net>
Mon, 11 Jul 2022 10:22:11 +0000 (12:22 +0200)
src/lib/check_content_job.cc

index b74b71cc0c57522090d0d2fe17b63838249b4eb9..f37890abfe39c783af4635012276fdb5be2c5ccb 100644 (file)
@@ -70,7 +70,7 @@ CheckContentJob::run ()
        std::vector<shared_ptr<Content>> changed;
        std::copy_if (content.begin(), content.end(), std::back_inserter(changed), [](shared_ptr<Content> c) { return c->changed(); });
 
-       if (_film->last_written_by_earlier_than(2, 16, 14)) {
+       if (_film->last_written_by_earlier_than(2, 16, 15)) {
                for (auto c: content) {
                        if (auto stf = dynamic_pointer_cast<StringTextFileContent>(c)) {
                                stf->check_font_ids();