Skip to content

Commit

Permalink
braid-text-server:0.0.10 - fixes a filename
Browse files Browse the repository at this point in the history
  • Loading branch information
The Whale authored and The Whale committed May 20, 2024
1 parent 34eac4c commit 3f733bc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion braid-text-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "braid-text-server",
"version": "0.0.9",
"version": "0.0.10",
"description": "Library for serving collaborative text over http using braid.",
"author": "Braid Working Group",
"repository": "braid-org/braidjs",
Expand Down
2 changes: 1 addition & 1 deletion braid-text-server/server-demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var server = require("http").createServer(async (req, res) => {

if (req.url.endsWith("?markdown-editor")) {
res.writeHead(200, { "Content-Type": "text/html", "Cache-Control": "no-cache" })
require("fs").createReadStream("./editor-markdown.html").pipe(res)
require("fs").createReadStream("./markdown-editor.html").pipe(res)
return
}

Expand Down

0 comments on commit 3f733bc

Please sign in to comment.