Fix thinko.
[libdcp.git] / tools / common.cc
index 7ae3dae07e5691c71d82d35c2c05c8f8fd647877..0238a8cc09469182acc896e0a027f9fb6308183a 100644 (file)
@@ -46,7 +46,7 @@ dcp::filter_notes (list<dcp::VerificationNote>& notes, bool ignore_missing_asset
                list<dcp::VerificationNote>::iterator tmp = i;
                ++tmp;
 
-               if (ignore_missing_assets && i->code() == dcp::VerificationNote::Code::MISSING_ASSET) {
+               if (ignore_missing_assets && (i->code() == dcp::VerificationNote::MISSING_ASSET || i->code() == dcp::VerificationNote::EXTERNAL_ASSET)) {
                        notes.erase (i);
                }