[Slim-Checkins] r11031 - /trunk/server/Slim/Web/Pages/Home.pm

fred at svn.slimdevices.com fred at svn.slimdevices.com
Fri Dec 22 12:58:46 PST 2006


Author: fred
Date: Fri Dec 22 12:58:46 2006
New Revision: 11031

URL: http://svn.slimdevices.com?rev=11031&view=rev
Log:
Bug: N/A
Description: Don't crash if there is no player in home!


Modified:
    trunk/server/Slim/Web/Pages/Home.pm

Modified: trunk/server/Slim/Web/Pages/Home.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Web/Pages/Home.pm?rev=11031&r1=11030&r2=11031&view=diff
==============================================================================
--- trunk/server/Slim/Web/Pages/Home.pm (original)
+++ trunk/server/Slim/Web/Pages/Home.pm Fri Dec 22 12:58:46 2006
@@ -99,7 +99,7 @@
 	# More leakage from the DigitalInput 'plugin'
 	#
 	# If our current player has digital inputs, show the menu.
-	if ($client->hasDigitalIn) {
+	if ($client && $client->hasDigitalIn) {
 
 		Plugins::DigitalInput::Plugin->webPages;
 	}



More information about the checkins mailing list