Skip to content

Commit

Permalink
Missed a variable $
Browse files Browse the repository at this point in the history
  • Loading branch information
DarrinOlsen committed Aug 4, 2021
1 parent edce57a commit 0f18399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/donations.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const Module = new Augur.Module()

let embed = u.embed()
.setTitle(`${team.name} ${team.eventName}`)
.setThumbnail(team.avatarImageURL ? `{team.avatarImageURL}` : "https://assets.donordrive.com/extralife/images/fbLogo.jpg?v=202009241356")
.setThumbnail(team.avatarImageURL ? `${team.avatarImageURL}` : "https://assets.donordrive.com/extralife/images/fbLogo.jpg?v=202009241356")
.setURL(team.links.page)
.setDescription(`${team.name} is raising money for ${team.eventName}! We are currently at $${team.sumDonations} of our team's $${team.fundraisingGoal} goal. That's ${Math.round(100 * team.sumDonations / team.fundraisingGoal)}% there!\n\nYou can help by donating to one of the Extra Life Team below.`);
for (let i = 0; i < Math.min(team.participants.length, 25); i++) {
Expand Down

0 comments on commit 0f18399

Please sign in to comment.