podcast: pass the title into the format string, it was printing '%!s(MISSING)'.

This commit is contained in:
Yasuhiro Matsumoto
2026-07-15 08:33:49 +09:00
parent d3347ec2b0
commit 1d6c352e92

View File

@@ -582,11 +582,11 @@ func printPodcastEpisodeList(ctx context.Context, p podcastInfo, limit int) erro
}
if len(episodes) == 0 {
stdout(color.YellowString("no episodes found for %s"), p.Title)
stdout(color.YellowString("no episodes found for %s", p.Title))
return nil
}
stdout(color.CyanString("episodes for %s:"), p.Title)
stdout(color.CyanString("episodes for %s:", p.Title))
for _, ep := range episodes {
title := podcastTagValue(ep, "title")
if title == "" {