Index: server/types.conf =================================================================== --- server/types.conf (revision 2258) +++ server/types.conf (working copy) @@ -14,6 +14,7 @@ asx asx,wax video/asx,application/asx,application/vnd.ms-asf,video/x-ms-asf,audio/x-ms-wax,audio/x-ms-asf playlist css css text/css - cue cue audio/x-cue playlist +cur - audio/x-cue-referenced - dir - application/directory list dtd dtd application/xml-dtd - flc flac,flc audio/x-flac audio Index: server/Slim/Formats/Parse.pm =================================================================== --- server/Slim/Formats/Parse.pm (revision 2263) +++ server/Slim/Formats/Parse.pm (working copy) @@ -356,7 +356,15 @@ } # $noUTF8 will be set if this is an external cuesheet, in - # which case we don't want to readTags on the source FLAC file. + # which case we don't want to readTags on the source file. + if ($noUTF8) { + $ds->updateOrCreate({ + 'url' => $filename, + 'attributes' => {'CT' => "cur"}, + 'readTags' => 0, + }); + } + $ds->updateOrCreate({ 'url' => $url, 'attributes' => $cacheEntry,