kianschmalenbach / rdf-browser

A Firefox Add-on that requests RDF files and renders RDF files as Turtle documents with clickable links
MIT License
16 stars 6 forks source link

Fxing: Serializer of Edit Mode always creates Turtle #33

Closed dschraudner closed 2 years ago

dschraudner commented 2 years ago

When editing a document in Edit Mode (in Developer Mode), the resulting PUT requests always has a Turtle payload when the serializer of N3.js is used. This is because N3StreamWriter takes options (where the target format is passed) as a first argument not as a second argument as done in parser.js#L72. Commit 85c6bb8 fixes this.