summaryrefslogtreecommitdiff
path: root/internal/api/trello.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/trello.go')
-rw-r--r--internal/api/trello.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/internal/api/trello.go b/internal/api/trello.go
index 4cf7e9e..a19bbea 100644
--- a/internal/api/trello.go
+++ b/internal/api/trello.go
@@ -86,7 +86,7 @@ func (c *TrelloClient) GetBoards(ctx context.Context) ([]models.Board, error) {
// GetCards fetches all cards for a specific board
func (c *TrelloClient) GetCards(ctx context.Context, boardID string) ([]models.Card, error) {
params := c.authParams()
- params.Set("filter", "visible")
+ params.Set("filter", "open")
params.Set("fields", "id,name,idList,due,url,idBoard")
var apiCards []trelloCardResponse
@@ -95,7 +95,11 @@ func (c *TrelloClient) GetCards(ctx context.Context, boardID string) ([]models.C
return nil, fmt.Errorf("failed to fetch cards: %w", err)
}
- log.Printf("Trello GetCards: board %s returned %d cards from API", boardID, len(apiCards))
+ if len(apiCards) == 0 {
+ log.Printf("Trello GetCards: board %s returned 0 cards (may have only archived cards)", boardID)
+ } else {
+ log.Printf("Trello GetCards: board %s returned %d cards", boardID, len(apiCards))
+ }
// Fetch lists to get list names
lists, err := c.getLists(ctx, boardID)