Skip to content

Commit

Permalink
RichRenderer: Bugfix missing plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jnvsor committed Aug 16, 2024
1 parent 38df142 commit 99bd435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Renderer/RichRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ protected function getPlugin(array $plugins, array $hints): ?PluginInterface
$this->plugin_objs[$plugin] = new $plugin($this);
}

return $this->plugin_objs[$plugin];
return $this->plugin_objs[$plugin] ?? null;
}

return null;
Expand Down

0 comments on commit 99bd435

Please sign in to comment.