X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_examiner.cc;fp=src%2Flib%2Fdcp_examiner.cc;h=27eb74a5d5231e559cc5856ff78040d105e8c786;hb=c78e9f0d5e802e1bb020694870357ef271217628;hp=65cfb884ed8d39911f519b5d196c700a1c3cdae1;hpb=be48763fb25bf516bd394827979342a30f2a594c;p=dcpomatic.git diff --git a/src/lib/dcp_examiner.cc b/src/lib/dcp_examiner.cc index 65cfb884e..27eb74a5d 100644 --- a/src/lib/dcp_examiner.cc +++ b/src/lib/dcp_examiner.cc @@ -260,7 +260,9 @@ DCPExaminer::DCPExaminer (shared_ptr content, bool tolerant) _three_d = !cpl->reels().empty() && cpl->reels().front()->main_picture() && dynamic_pointer_cast (cpl->reels().front()->main_picture()->asset()); _ratings = cpl->ratings(); - _content_version = cpl->content_version().label_text; + BOOST_FOREACH (dcp::ContentVersion i, cpl->content_versions()) { + _content_versions.push_back (i.label_text); + } _cpl = cpl->id (); }