From 9f6c0e4575bad2bc45edb8cf9afa5716b9988728 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 9 Sep 2020 23:54:05 +0200 Subject: [PATCH] Add some detail to a verification warning. --- src/dcp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dcp.cc b/src/dcp.cc index 2929b5d8..426bd815 100644 --- a/src/dcp.cc +++ b/src/dcp.cc @@ -263,7 +263,7 @@ DCP::read (list* notes, bool ignore_incorrect_picture_mxf BOOST_FOREACH (shared_ptr i, cpls()) { BOOST_FOREACH (shared_ptr j, i->reel_mxfs()) { if (!j->asset_ref().resolved() && paths.find(j->asset_ref().id()) == paths.end()) { - notes->push_back (VerificationNote(VerificationNote::VERIFY_WARNING, VerificationNote::EXTERNAL_ASSET)); + notes->push_back (VerificationNote(VerificationNote::VERIFY_WARNING, VerificationNote::EXTERNAL_ASSET, j->asset_ref().id())); } } } -- 2.30.2