Skip to content

Commit c8b2201

Browse files
committed
fix: update podcast index service method for fetching podcast by GUID
1 parent ac4d30b commit c8b2201

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/rss/remoteItemParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const handleRemoteItemsFeedParsing = async (feedGuidsToParse: string[]) => {
2929
const pvExistingFeed = await feedService.getByPodcastGuid(feedGuid);
3030

3131
if (!pvExistingFeed) {
32-
const piFeedDataResponse = await podcastIndexService.getPodcastByGuid(feedGuid);
32+
const piFeedDataResponse = await podcastIndexService.podcastGetByGuid(feedGuid);
3333
if (piFeedDataResponse?.feed?.id && piFeedDataResponse?.feed?.url) {
3434
const piFeedData: PIFeedWithPodcastGuidData = {
3535
id: piFeedDataResponse.feed.id,

0 commit comments

Comments
 (0)