From a939e4b642ff9b398920dee1d0154729217347a5 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 24 Mar 2022 00:01:33 +0100 Subject: Don't throw an exception part-way through resolving assets (#2221). This was applied to libdcp master in 81c6fcba2. It seems wrong to give up in the middle of resolving things, as it might not work if things happen to be in the wrong order. --- src/lib/dcp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/dcp.cc b/src/lib/dcp.cc index abdfc7f9e..8fb27db57 100644 --- a/src/lib/dcp.cc +++ b/src/lib/dcp.cc @@ -78,7 +78,7 @@ DCP::cpls () const for (auto i: dcps) { for (auto j: dcps) { if (i != j) { - i->resolve_refs(j->assets()); + i->resolve_refs(j->assets(true)); } } } -- cgit v1.2.3