Skip to content

Commit f554303

Browse files
cpintoclaude
authored andcommitted
Include BCC in recipient validation check
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6ce1992 commit f554303

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/cmd/reply.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func (c *replyCommand) run(cmd *cobra.Command, args []string) error {
5353
return convertSDKError(err)
5454
}
5555
addressed := htmlutil.ParseTopicAddressed(string(topicResp.Data))
56-
if len(addressed.To) == 0 && len(addressed.CC) == 0 {
56+
if len(addressed.To) == 0 && len(addressed.CC) == 0 && len(addressed.BCC) == 0 {
5757
return output.ErrUsage("could not determine thread recipients")
5858
}
5959

0 commit comments

Comments
 (0)