multica-ai/multica · error

list %s column: %w

Error message

list %s column: %w

What it means

Error "list %s column: %w" thrown in multica-ai/multica.

Source

Thrown at server/cmd/multica/cmd_issue.go:1600

		if after != "" {
			otherInput = after
		}
		otherRef, err = resolveIssueRef(ctx, client, otherInput)
		if err != nil {
			return fmt.Errorf("resolve target issue: %w", err)
		}
		if otherRef.ID == issueRef.ID {
			return fmt.Errorf("cannot reorder issue %s relative to itself", issueRef.Display)
		}
	}

	// Scope the column to the issue's own project (when it has one) so the
	// computed position lands relative to the project board the issue lives on,
	// not a blend of every project's issues in this status.
	projectID := strVal(target, "project_id")
	column, err := fetchIssueColumn(ctx, client, wsID, projectID, status)
	if err != nil {
		return fmt.Errorf("list %s column: %w", status, err)
	}

	// Build the column order with the target removed, plus a lookup of every
	// position in the column (the target's own included, for the no-op check).
	positions := make(map[string]float64, len(column))
	ordered := make([]string, 0, len(column))
	for _, raw := range column {
		id := strVal(raw, "id")
		if id == "" {
			continue
		}
		positions[id] = floatVal(raw, "position")
		if id != issueRef.ID {
			ordered = append(ordered, id)
		}
	}
	if len(ordered) == 0 {
		// The active issue is alone in its column. A relative move cannot

View on GitHub (pinned to 2c0912b6ec)

Solutions

  1. Check server connectivity and retry listing the column.

When it happens

Trigger: Thrown at server/cmd/multica/cmd_issue.go:1600 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of multica-ai/multica@2c0912b6ec (2026-08-15). Data as JSON: /api/errors/a19c3ee54a554683. Report an issue: GitHub.