Author: fmueller
Date: Fri Feb 10 02:56:05 2012
New Revision: 9599

URL: http://svn.slimdevices.com/jive?rev=9599&view=rev
Log:
Bug: 17886 
Description: Fix IR Blaster on Fab4 when controlled by a SB Controller. We need 
to check for IR Blaster capability of the controlled (and not the local) 
player. 

Modified:
    7.7/trunk/squeezeplay/src/squeezeplay/share/applets/SlimBrowser/Volume.lua

Modified: 
7.7/trunk/squeezeplay/src/squeezeplay/share/applets/SlimBrowser/Volume.lua
URL: 
http://svn.slimdevices.com/jive/7.7/trunk/squeezeplay/src/squeezeplay/share/applets/SlimBrowser/Volume.lua?rev=9599&r1=9598&r2=9599&view=diff
==============================================================================
--- 7.7/trunk/squeezeplay/src/squeezeplay/share/applets/SlimBrowser/Volume.lua 
(original)
+++ 7.7/trunk/squeezeplay/src/squeezeplay/share/applets/SlimBrowser/Volume.lua 
Fri Feb 10 02:56:05 2012
@@ -172,7 +172,8 @@
        -- Bug 15826: Allow volume events to be sent even if volume is fixed
        --  at 100% to allow IR Blaster (a server side extra) to work properly.
        -- Catch volume IR commands received by Fab4
-       if self.player and (self.player:getDigitalVolumeControl() == 0) and 
System:hasIRBlasterCapability() then
+       -- Currently the only SP based player supporting IR Blaster is Fab4
+       if self.player and (self.player:getDigitalVolumeControl() == 0) and 
(self.player:getModel() == "fab4") then
                -- Send command directly to server w/o updating local volume
                Player.volume(self.player, 100 + self.delta, true)
        end

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

Reply via email to