Using version 0.6 of the C# API downloaded today (June 03 2008).
Line 392 in friendfeed.cs initializes Entry.Service like this:
Service = new Service(Util.ChildElement(element, "user"));
This is a bug. It should initialize using the "service" element, not the
"user" element.
So the correct code should be:
Service = new Service(Util.ChildElement(element, "service"));
Original issue reported on code.google.com by yuv...@gmail.com on 3 Jun 2008 at 12:20
Original issue reported on code.google.com by
yuv...@gmail.com
on 3 Jun 2008 at 12:20