summaryrefslogtreecommitdiff
path: root/internal/service/podcast.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-07 15:56:35 +0300
committerPaul Buetow <paul@buetow.org>2026-05-07 15:56:35 +0300
commit7f3ca21cc42979b8f1898f5dfd81f51f04aed5e0 (patch)
tree47987d9c73f2ce760cefed045ec85eee53747ff7 /internal/service/podcast.go
parent3f70adb2c24d558be645aacb11a97d5f95f69b76 (diff)
Fix podcast browser workflows for k1
Diffstat (limited to 'internal/service/podcast.go')
-rw-r--r--internal/service/podcast.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/service/podcast.go b/internal/service/podcast.go
index 77c6118..4425bfc 100644
--- a/internal/service/podcast.go
+++ b/internal/service/podcast.go
@@ -129,7 +129,7 @@ func (s *podcastService) SubscribeFeed(ctx context.Context, feedURL, setName str
parsed, err := s.parseFeed(feedURL)
if err != nil {
- return nil, fmt.Errorf("parse feed: %w", err)
+ return nil, fmt.Errorf("%w: %v", ErrInvalidFeed, err)
}
safeName, setPath := s.resolveSetPath(setName, parsed.Title)