From d228090b2f095d9233c1762a5e75968ca5377bf5 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 10 Jun 2015 09:28:31 +0100 Subject: [PATCH] Don't complain if SMPTE subtitle URNs are different. --- src/smpte_subtitle_asset.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpte_subtitle_asset.cc b/src/smpte_subtitle_asset.cc index 36908951..dc0c86ad 100644 --- a/src/smpte_subtitle_asset.cc +++ b/src/smpte_subtitle_asset.cc @@ -284,7 +284,7 @@ SMPTESubtitleAsset::equals (shared_ptr other_asset, EqualityOptions return false; } - if (**i != **j) { + if ((*i)->id != (*j)->id) { note (DCP_ERROR, " nodes differ"); return false; } -- 2.30.2