Skip to content

Commit

Permalink
fix: pass app to post renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
sytone committed Dec 6, 2024
1 parent cb30671 commit 154d9bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QueryRenderChildV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ export class QueryRenderChildV2 extends MarkdownRenderChild {
let postRenderer: IPostRenderer;
switch (postRenderFormat) {
case 'markdown': {
postRenderer = new ObsidianPostRenderer();
postRenderer = new ObsidianPostRenderer(this.plugin.app);
break;
}

Expand Down

0 comments on commit 154d9bb

Please sign in to comment.