diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-15 08:57:44 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-15 08:57:44 +0100 |
| commit | b30b938b326ad3564f2a39acfe6a1bfe0c203ca6 (patch) | |
| tree | 0f75977c04e9dc51d77f098acd90e1114bc3b96b | |
| parent | af87d03b24c21301639c23606993cfebcfbe3088 (diff) | |
GroupId is SMPTE-only.v1.10.6
| -rw-r--r-- | src/pkl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -130,7 +130,7 @@ PKL::write_xml (boost::filesystem::path file, shared_ptr<const CertificateChain> cxml::add_text_child(pkl, "IssueDate", _issue_date); cxml::add_text_child(pkl, "Issuer", _issuer); cxml::add_text_child(pkl, "Creator", _creator); - if (_group_id) { + if (_group_id && _standard == Standard::SMPTE) { cxml::add_text_child(pkl, "GroupId", "urn:uuid:" + *_group_id); } |
