Server/Actions/ActionCecDeviceStandby.cs
changeset 221 5770478e1fe3
parent 220 e5910d7b6a81
child 222 0e8c6c2f4777
     1.1 --- a/Server/Actions/ActionCecDeviceStandby.cs	Tue Jul 26 15:05:57 2016 +0200
     1.2 +++ b/Server/Actions/ActionCecDeviceStandby.cs	Tue Jul 26 15:30:46 2016 +0200
     1.3 @@ -20,6 +20,12 @@
     1.4          /// <returns></returns>
     1.5          public override string Brief()
     1.6          {
     1.7 +            if (Device == CecLogicalAddress.Broadcast)
     1.8 +            {
     1.9 +                //Because of duplicated values it would display Unregistered
    1.10 +                return "CEC Standby Broadcast";
    1.11 +            }
    1.12 +
    1.13              return "CEC Standby " + Device.ToString();
    1.14          }
    1.15