snhlsonawane / friendfeed-api

Automatically exported from code.google.com/p/friendfeed-api
0 stars 0 forks source link

(C#) Wrong initialization of Entry.Service #9

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Thanks Yuvala, this has been fixed.

Original comment by casey...@gmail.com on 22 Jul 2008 at 3:49