mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-02-16 10:58:31 -05:00
More cleanup and UI work
This commit is contained in:
@@ -100,7 +100,7 @@ namespace FeedCenter.FeedParsers
|
||||
if (childNode.Attributes != null)
|
||||
{
|
||||
var permaLinkNode = childNode.Attributes.GetNamedItem("isPermaLink");
|
||||
permaLink = (permaLinkNode == null || permaLinkNode.Value == "true");
|
||||
permaLink = permaLinkNode == null || permaLinkNode.Value == "true";
|
||||
}
|
||||
|
||||
if (permaLink && Uri.IsWellFormedUriString(feedItem.Guid, UriKind.Absolute))
|
||||
|
||||
Reference in New Issue
Block a user