Bwug
This commit is contained in:
parent
6ed299cf2b
commit
246f25b905
|
@ -23,13 +23,13 @@ const execute = async (interaction) => {
|
|||
fields: [
|
||||
{ name: "Hub ID", value: hubResult[0].id },
|
||||
{ name: "Hub Name", value: hubResult[0].name },
|
||||
{ name: "Owner Discord ID", value: hubResult[0].ownerId },
|
||||
{ name: "Discord Guild ID", value: hubResult[0].discordGuild },
|
||||
{ name: "Owner Discord ID", value: new String(hubResult[0].ownerId) },
|
||||
{ name: "Discord Guild ID", value: new String(hubResult[0].discordGuild) },
|
||||
{ name: "Short Description", value: hubResult[0].shortDescription },
|
||||
{ name: "Long Description", value: hubResult[0].longDescription },
|
||||
{ name: "Allow Gift Purchase", value: hubResult[0].allowGiftPurchase ? "Yes" : "No" },
|
||||
{ name: "Terms of Service", value: hubResult[0].tos },
|
||||
{ name: "Background Music ID", value: hubResult[0].bgmId ? hubResult[0].bgmId : "None" },
|
||||
{ name: "Background Music ID", value: hubResult[0].bgmId ? new String(hubResult[0].bgmId) : "None" },
|
||||
{ name: "Secret Key", value: `||\`${hubResult[0].secretKey}\`||` }
|
||||
]
|
||||
},{
|
||||
|
|
Loading…
Reference in a new issue