diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-03 12:09:53 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-21 21:57:18 +0200 |
| commit | fc205951d1fec50d59bfbed9cb03c07cc95205d9 (patch) | |
| tree | 8a6ed5817dbda70633a07bf8279955e9ea034a71 /tools | |
| parent | 5b734ff2d8d9c26fceaa7804fb2aebcc0c60aa50 (diff) | |
Missing note type when filtering out missing asset errors.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/common.cc b/tools/common.cc index 91dba995..0238a8cc 100644 --- a/tools/common.cc +++ b/tools/common.cc @@ -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::MISSING_ASSET) { + if (ignore_missing_assets && (i->code() == dcp::VerificationNote::MISSING_ASSET || i->code() == dcp::VerificationNote::EXTERNAL_ASSET)) { notes.erase (i); } |
