Skip to content

Commit

Permalink
Check consensus for IAB as well
Browse files Browse the repository at this point in the history
Closes: #200

Signed-off-by: Miek Gieben <miek@miek.nl>
  • Loading branch information
miekg committed Nov 8, 2023
1 parent 22bf84e commit 6f025ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion render/xml/title.go
Expand Up @@ -45,7 +45,7 @@ func (r *Renderer) titleBlock(w io.Writer, t *mast.Title) {
)...)
// RFC 7841 Appendix A.2.2: IETF and IRTF streams pay attention to the consensus attribute.
// RFC 7991 Section 2.45.2: Default is false.
if ((d.SubmissionType == "IETF") || (d.SubmissionType == "IRTF")) && d.Consensus {
if (d.SubmissionType == "IETF" || d.SubmissionType == "IRTF" || d.SubmissionType == "IAB") && d.Consensus {
attrs = append(attrs, Attributes(
[]string{"consensus"},
[]string{fmt.Sprintf("%t", d.Consensus)},
Expand Down

0 comments on commit 6f025ef

Please sign in to comment.