Comment 3 for bug 694196

Revision history for this message
Dave Eddy (daveeddydotcom) wrote :

Well i'm glad to see Viridian being made available to the fedora community!

This issue seems to be something that I have dealt with with Ampache before, and it is an issue with the XML being returned from Ampache and the XML parser I'm using for Viridian breaking. I will commit a fix for this issue after the holidays, but for now if you would like to fix this issue it can most likely be fixed by finding the line in AmpacheSession.py that looks like this...

album_disk = int(child.getElementsByTagName('disk')[0].childNodes[0].data)

and replacing it with this

try:
        album_disk = int(child.getElementsByTagName('disk')[0].childNodes[0].data)
except:
        album_disk = 0