From: Carl Hetherington Date: Thu, 18 Jun 2020 10:54:07 +0000 (+0200) Subject: Fix finding of CPLs to make KDMs for, broken by recent libdcp additions. X-Git-Tag: v2.15.82~3 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=e4ca6b23d8c5b25725b6b7c1bfe4db3af932dcc0;p=dcpomatic.git Fix finding of CPLs to make KDMs for, broken by recent libdcp additions. --- diff --git a/src/lib/types.cc b/src/lib/types.cc index 9519b3097..d2df7f1a8 100644 --- a/src/lib/types.cc +++ b/src/lib/types.cc @@ -194,10 +194,14 @@ CPLSummary::CPLSummary (boost::filesystem::path p) : dcp_directory (p.leaf().string()) { dcp::DCP dcp (p); + list notes; dcp.read (¬es); - if (!notes.empty()) { - throw dcp::ReadError(dcp::note_to_string(notes.front())); + BOOST_FOREACH (dcp::VerificationNote i, notes) { + if (i.code() != dcp::VerificationNote::EXTERNAL_ASSET) { + /* It's not just a warning about this DCP being a VF */ + throw dcp::ReadError(dcp::note_to_string(i)); + } } cpl_id = dcp.cpls().front()->id();