mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Merge pull request #443 from vincode-io/issue-386
Fixed issue where a feed: url in the body of a page wouldn't be retri…
This commit is contained in:
@@ -34,7 +34,8 @@ class HTMLFeedFinder {
|
||||
for oneBodyLink in bodyLinks {
|
||||
|
||||
if linkMightBeFeed(oneBodyLink) {
|
||||
let oneFeedSpecifier = FeedSpecifier(title: oneBodyLink.text, urlString: oneBodyLink.urlString!, source: .HTMLLink)
|
||||
let normalizedURL = oneBodyLink.urlString.rs_normalizedURL()
|
||||
let oneFeedSpecifier = FeedSpecifier(title: oneBodyLink.text, urlString: normalizedURL, source: .HTMLLink)
|
||||
addFeedSpecifier(oneFeedSpecifier)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user