diff options
| -rw-r--r-- | responses.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/responses.js b/responses.js index e28af93..e798f97 100644 --- a/responses.js +++ b/responses.js @@ -25,14 +25,14 @@ function vainsocialEmbed(title, link) { if (PREVIEW) { embed .setURL("https://preview.vainsocial.com/" + link) - .setAuthor("VainSocial preview", null, + .setAuthor("VainSocial preview", "http://preview.vainsocial.com/images/brands/logo-blue.png", "https://preview.vainsocial.com") - .setFooter("VainSocial preview"); + .setFooter("VainSocial preview", "http://preview.vainsocial.com/images/brands/logo-blue.png"); } else { embed .setURL("https://vainsocial.com/" + link) - .setAuthor("VainSocial", null, "https://vainsocial.com") - .setFooter("VainSocial"); + .setAuthor("VainSocial", "http://vainsocial.com/images/brands/logo-blue.png", "https://vainsocial.com") + .setFooter("VainSocial", "http://vainsocial.com/images/brands/logo-blue.png"); } return embed; } |
