Skip to content
This repository has been archived by the owner on Aug 16, 2022. It is now read-only.

Commit

Permalink
fix(webserver): Fix card delete event
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Sep 26, 2020
1 parent 779da3f commit 869c960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webserver/events/card/delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exports.exec = async data => {
description: _('webhooks_extended.delete_card', {
member: `[${data.invoker.webhookSafeName}](https://trello.com/${data.invoker.username})`,
cardID: data.card.shortLink,
list: data.util.cutoffText(data.listAfter.name, 25)
list: data.util.cutoffText(data.list.name, 25)
})
}
});
Expand Down

0 comments on commit 869c960

Please sign in to comment.