Skip to content

Commit

Permalink
Fix broken RSS feed
Browse files Browse the repository at this point in the history
As kindly pointed out in planetxamarin#719 by @saamerm.
  • Loading branch information
mallibone committed Mar 22, 2021
1 parent bf265f0 commit 30916ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Firehose.Web/Authors/MarkAllibone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class MarkAllibone : IAmAMicrosoftMVP

public string EmailAddress => "";

public string ShortBioOrTagLine => "is a Microsoft MVP who blogs, talks, coaches and develops all around mobile development.";
public string ShortBioOrTagLine => "blogs, talks, coaches and develops all around mobile development.";

public Uri WebSite => new Uri("https://mallibone.com");

Expand All @@ -26,10 +26,10 @@ public class MarkAllibone : IAmAMicrosoftMVP

public string GravatarHash => "4fa14971da4fafb96830960bc7c6733d";

public IEnumerable<Uri> FeedUris => new List<Uri> {new Uri("https://mallibone.com/feed/") };
public IEnumerable<Uri> FeedUris => new List<Uri> {new Uri("https://mallibone.com/feed.xml") };

public GeoPosition Position => new GeoPosition(47.5056381, 8.7241297);

public string FeedLanguageCode => "en";
}
}
}

0 comments on commit 30916ec

Please sign in to comment.