hi,

ganz kurz,

wenn ich bei titelsuche nach z.B. "live" suche kommen zig ergebnisse.
will ich diese mithilfe von "alle titel" (einmal nach oben) als
playlist starten erscheint "leer" und es kommt gar nichts.

mach ich das gleiche (die suche) am slimserver direkt und klicke
anschliessend im suchergebnis ganz oben auf "alle titel" so kommen
diese als playlist...

ist dies ein bug der 6.5.0 slimserver software?
ich benutze transporter als auch SB3 ?

danke im voraus!

PS: ein "freier" hat mir das gepostet, jedoch weiss ich leider nicht
wohin damit. jedoch weisst dies ja auf einen bug hin, oder nicht?


:::


Here's one possible fix:
--- Slim/Control/Commands.pm.old 2006-11-22 12:51:40.425750000 -0800
+++ Slim/Control/Commands.pm 2006-11-22 12:50:28.253875000 -0800
@@ -2221,8 +2222,12 @@ sub _playlistXtracksCommand_parseSearchT
} else {

if ($key =~ /\.(?:name|title)search$/) {
-
- $find{$key} = { 'like' =>
Slim::Utils::Text::searchStringSplit($value) };
+
+ if (ref $value eq 'HASH') {
+ $find{$key} = $value;
+ } else {
+ $find{$key} = { 'like' =>
Slim::Utils::Text::searchStringSplit($value) };
+ }

} else {




I assume since you posted on the Developers' forum that you will know
how to apply this. If you were only hoping to shortcut support,etc to
whine directly at developers... then you should file a bug report @
http://bugs.slimdevices.com instead.

-kdf


-- 
truckfighters
------------------------------------------------------------------------
truckfighters's Profile: http://forums.slimdevices.com/member.php?userid=7852
View this thread: http://forums.slimdevices.com/showthread.php?t=29955

_______________________________________________
slimserver-de mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/slimserver-de

Antwort per Email an