Author: bklaas
Date: Thu Jan 31 08:30:39 2008
New Revision: 1723

URL: http://svn.slimdevices.com?rev=1723&root=Jive&view=rev
Log:
Bug: 6843
Description: check for self['browse'] before referencing self['browse'].window

Modified:
    branches/7.0/jive/src/pkg/jive/share/applets/NowPlaying/NowPlayingApplet.lua

Modified: 
branches/7.0/jive/src/pkg/jive/share/applets/NowPlaying/NowPlayingApplet.lua
URL: 
http://svn.slimdevices.com/branches/7.0/jive/src/pkg/jive/share/applets/NowPlaying/NowPlayingApplet.lua?rev=1723&root=Jive&r1=1722&r2=1723&view=diff
==============================================================================
--- 
branches/7.0/jive/src/pkg/jive/share/applets/NowPlaying/NowPlayingApplet.lua 
(original)
+++ 
branches/7.0/jive/src/pkg/jive/share/applets/NowPlaying/NowPlayingApplet.lua 
Thu Jan 31 08:30:39 2008
@@ -175,7 +175,7 @@
        end
        -- hide this window if the player is turned off
        if power == 0 then
-               if self['browse'].window then
+               if self['browse'] and self['browse'].window then
                        self['browse'].window:hide()
                end
        end

_______________________________________________
Jive-checkins mailing list
[email protected]
http://lists.slimdevices.com/cgi-bin/mailman/listinfo/jive-checkins

Reply via email to