Skip to content

Commit 916837a

Browse files
committed
fix double search of trello cards
1 parent c561f41 commit 916837a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/dlangbot/trello.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void moveCardToList(string cardID, string listName)
126126

127127
void updateTrelloCard(string action, string pullRequestURL, IssueRef[] refs, Issue[] descs)
128128
{
129-
foreach (grp; descs.map!(d => findTrelloCards(d.id)).joiner.array.chunkBy!((a, b) => a.id == b.id))
129+
foreach (grp; descs.map!(d => findTrelloCards(d.id)).join.chunkBy!((a, b) => a.id == b.id))
130130
{
131131
auto cardID = grp.front.id;
132132
auto comment = getTrelloBotComment(cardID);

0 commit comments

Comments
 (0)