> [08:46:07.5614] Slim::Utils::Misc::msg (1226) Warning: [08:46:07.5610] Use of 
> uninitialized value in string ne at Plugins/MusicInfoSCR/Info.pm line 437.

Could you please give the following change a try:

Index: 
/Users/mh/Documents/workspace/MusicInfoSCR/lib/Plugins/MusicInfoSCR/Info.pm
===================================================================
--- /Users/mh/Documents/workspace/MusicInfoSCR/lib/Plugins/MusicInfoSCR/Info.pm 
(revision 658)
+++ /Users/mh/Documents/workspace/MusicInfoSCR/lib/Plugins/MusicInfoSCR/Info.pm 
(working copy)
@@ -434,8 +434,8 @@
        my $shuffleState = $prefs->client($client)->get('shuffle');
        my $repeatState = $prefs->client($client)->get('repeat');

-       if (($shuffleState ne $displayCache{$client}->{'shuffle'})
-        || ($repeatState ne $displayCache{$client}->{'repeat'})
+       if (($shuffleState != $displayCache{$client}->{'shuffle'})
+        || ($repeatState != $displayCache{$client}->{'repeat'})
         || ($line ne $displayCache{$client}->{'line'})
         || ($position ne $displayCache{$client}->{'position'})) {


You'll basically have to replace the "ne" with "!=" in those two lines. Thanks!
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/plugins

Reply via email to