We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Michael,
I'm interested in getting the value of <feedburner:origlink> from the <item> element and using it for the item.link value.
<feedburner:origlink>
<item>
I was trying something like adding the following:
// Item if (!processed) { if ([currentPath isEqualToString:@"/rss/channel/item/title"]) { if (processedText.length > 0) item.title = processedText; processed = YES; } else if ([currentPath isEqualToString:@"/rss/channel/item/feedburner:origlink"]) { if (processedText.length > 0) item.link = processedText; processed = YES; } else if ([currentPath isEqualToString:@"/rss/channel/item/link"]) { if (processedText.length > 0) item.link = processedText; processed = YES; }
(I've added similar code to case FeedTypeRSS1: and case FeedTypeAtom.)
However, "feedburner:origlink" is never returned. Where would I add code to allow the element to be added to "currentPath"? Thanks!
The text was updated successfully, but these errors were encountered:
@tnewton42 please check #112 - maybe you will be able to help.
Sorry, something went wrong.
No branches or pull requests
Hi Michael,
I'm interested in getting the value of
<feedburner:origlink>
from the<item>
element and using it for the item.link value.I was trying something like adding the following:
(I've added similar code to case FeedTypeRSS1: and case FeedTypeAtom.)
However, "feedburner:origlink" is never returned. Where would I add code to allow the element to be added to "currentPath"? Thanks!
The text was updated successfully, but these errors were encountered: