fix: Prefer all inputs equally when generating quads

This commit is contained in:
Joachim Van Herwegen
2021-10-28 16:00:06 +02:00
parent ed287ffade
commit c6544fac1d
2 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ import type { RepresentationConverterArgs } from './RepresentationConverter';
*/
export class RdfToQuadConverter extends BaseTypedRepresentationConverter {
public constructor() {
super(rdfParser.getContentTypesPrioritized(), INTERNAL_QUADS);
super(rdfParser.getContentTypes(), INTERNAL_QUADS);
}
public async handle({ representation, identifier }: RepresentationConverterArgs): Promise<Representation> {