From ca9ea600823dae2d550815381a5bb3feca454a94 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sat, 21 Aug 2021 00:53:58 +0300 Subject: [PATCH] Fix crash when calling tags from other tags --- backend/src/plugins/Tags/util/renderTagBody.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/plugins/Tags/util/renderTagBody.ts b/backend/src/plugins/Tags/util/renderTagBody.ts index 1d039b44..90efffe3 100644 --- a/backend/src/plugins/Tags/util/renderTagBody.ts +++ b/backend/src/plugins/Tags/util/renderTagBody.ts @@ -47,7 +47,7 @@ export async function renderTagBody( return ""; } - const rendered = await renderTagBody(pluginData, subTagBody, subTagArgs, subTagPermissionMatchParams); + const rendered = await renderTagBody(pluginData, subTagBody, subTagArgs, extraData, subTagPermissionMatchParams); return rendered.content!; }, });