1

Closed

Is this project accepting bug fixes?

description

There is a pretty serious bug in the iTunesSyndicationExtensionContext class. Asking again if this project is still being maintained or accepting bug fixes? I have one if any of the admins here are interested.
Closed Jun 27, 2011 at 8:41 PM by Trickster

comments

Trickster wrote Jun 26, 2011 at 11:35 PM

feel free to submit your patch

LDumond wrote Jun 27, 2011 at 5:56 PM

I don't have Subversion here, so I will simply point out the issue and associated fix below:

ITunesSyndicationExtensionContext.cs, line 426:

if (this.Image != null)
        {
            writer.WriteElementString("image", xmlNamespace, this.Image.ToString());
        }
The code above leaves the element malformed. Should be as follows:

if (this.Image != null)
        {
            writer.WriteStartElement("image", xmlNamespace);
            writer.WriteAttributeString("href", this.Image.ToString());
            writer.WriteEndElement();
        }

Trickster wrote Jun 27, 2011 at 8:36 PM

Thankyou for your code. I'll include this fix in next commit. You can view and submit more patches using this url: http://argotic.codeplex.com/SourceControl/list/patches

Trickster wrote Jun 27, 2011 at 8:41 PM

ok it's already here, so I can close this issue