Skip to content

Commit 4177e48

Browse files
authored
Merge pull request planetpowershell#117 from sethvs/FeedURI
Add Feed URI.
2 parents d95e34d + f76b0c6 commit 4177e48

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Firehose.Web/Authors/SergeyVasin.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ public class SergeyVasin : IAmACommunityMember, IFilterMyBlogPosts
2222

2323
public IEnumerable<Uri> FeedUris
2424
{
25-
get { yield return new Uri("https://sergeyvasin.net/feed/"); }
25+
get
26+
{
27+
yield return new Uri("https://sergeyvasin.net/feed/");
28+
yield return new Uri("https://sergeyvasin.com/feed/");
29+
}
2630
}
2731

2832
public bool Filter(SyndicationItem item)

0 commit comments

Comments
 (0)