summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-07-10 10:44:58 +0200
committerCarl Hetherington <cth@carlh.net>2022-07-11 12:22:11 +0200
commitc436d66407b3878cc77d91775f51c70a813567b3 (patch)
tree2c429263d94b183dc11694761235446f88ca3bb8 /src
parentebf89c5e6200b65e5cc48bb7b3af23ab68ede749 (diff)
Correct version number when deciding whether or not to fix subtitle IDs.v2.16.17
Diffstat (limited to 'src')
-rw-r--r--src/lib/check_content_job.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/check_content_job.cc b/src/lib/check_content_job.cc
index b74b71cc0..f37890abf 100644
--- a/src/lib/check_content_job.cc
+++ b/src/lib/check_content_job.cc
@@ -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();