fix: forgor (#253)

This commit is contained in:
Jayvin Hernandez 2022-12-18 16:07:38 -08:00 committed by GitHub
parent eb1b202566
commit 4a332bb77b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ export function parseContent(
args: ParseValue
): ConfigDiscordContent & { url: string } {
return {
content: parseString(content.content, args),
content: content.content ? parseString(content.content, args) : null,
embed: content.embed
? {
title: content.embed.title ? parseString(content.embed.title, args) : null,