summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-04-02 01:27:05 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-02 01:27:05 +0200
commite9478016478ac65d33a7cb07f067242bc9be2822 (patch)
tree4deb871f14830d22d3ed5afe9ea69241a37db16b /src/dcp.cc
parent5fe14174334968cbe65454f8f7b14512aa6c50ee (diff)
parenta0814a2e44e56d0378c6a47ca9c741de5cfe6356 (diff)
Merge branch 'tidy-verify'v1.10.54
This adjusts how the details of a lot of verification errors and warnings are handled.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index d7245ed8..4d5be236 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -334,7 +334,7 @@ DCP::read (vector<dcp::VerificationNote>* notes, bool ignore_incorrect_picture_m
for (auto i: cpls()) {
for (auto j: i->reel_file_assets()) {
if (!j->asset_ref().resolved() && ids_and_paths.find(j->asset_ref().id()) == ids_and_paths.end()) {
- notes->push_back(VerificationNote(VerificationNote::Code::EXTERNAL_ASSET, j->asset_ref().id()));
+ notes->push_back(VerificationNote(VerificationNote::Code::EXTERNAL_ASSET).set_asset_id(j->asset_ref().id()));
}
}
}