Skip to content

Commit ba2e005

Browse files
authored
fix(w3c/headers): allow forcing /TR namespace for TAG/AB (#5085)
1 parent 5cb217b commit ba2e005

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/w3c/headers.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,13 @@ function derivePubSpace(conf) {
665665
return `/Submission`;
666666
}
667667

668+
if (
669+
(conf.group === "tag" || conf.group === "ab") &&
670+
conf.canonicalURI === "TR"
671+
) {
672+
return `/TR`;
673+
}
674+
668675
return "";
669676
}
670677

0 commit comments

Comments
 (0)