Index: Slim/DataStores/DBI/DBIStore.pm =================================================================== --- Slim/DataStores/DBI/DBIStore.pm (revision 3717) +++ Slim/DataStores/DBI/DBIStore.pm (working copy) @@ -136,6 +136,11 @@ my $readTag = shift; my $lightweight = shift; + # Confirm that the URL itself isn't an object + if (ref($url) && ref($url) =~ /Track/) { + return $url; + } + if (!defined($url)) { Slim::Utils::Misc::msg("Null track request!\n"); Slim::Utils::Misc::bt();