Skip to content

Commit

Permalink
fix: send html and organization_id to render.HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Dec 5, 2022
1 parent 2dd9a7f commit a11390b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class CoCreateFileSystem {
}
else if (content_type === 'text/html') {
try {
let fullHtml = await render.html(orgDB, src);
let fullHtml = await render.HTML(src, organization_id);
res.type(content_type);
res.send(fullHtml);
}
Expand Down

0 comments on commit a11390b

Please sign in to comment.