3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-23 01:25:02 +00:00

Fix crash when calling tags from other tags

This commit is contained in:
Dragory 2021-08-21 00:53:58 +03:00
parent 01fcab3262
commit 36b0dfaa69

View file

@ -47,7 +47,7 @@ export async function renderTagBody(
return "<embed>"; return "<embed>";
} }
const rendered = await renderTagBody(pluginData, subTagBody, subTagArgs, subTagPermissionMatchParams); const rendered = await renderTagBody(pluginData, subTagBody, subTagArgs, extraData, subTagPermissionMatchParams);
return rendered.content!; return rendered.content!;
}, },
}); });