Bugzilla – Bug 3139
Genre Object does not seem to populate name
Last modified: 2006-03-11 07:25:48 UTC
When I instantiate a track object and access the genres method I get a sequence of genre objects that have correctly populated ids but the name function returns undef. The name method should presumably return the name of the genre of the given id. Example genre object: bless( { 'musicmagic_mixable' => undef, 'namesort' => undef, 'name' => undef, 'moodlogic_id' => undef, 'id' => '25', 'moodlogic_mixable' => undef }, 'Slim::DataStores::DBI::Genre' ) Malcolm
Managed to fix my issue (I had some faulty perl syntax that failed silently rather than with an error). Took me a good 4-5 hours though! Malcolm