Skip to content

Commit

Permalink
feature: room name formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jtalborough committed Aug 1, 2024
1 parent 11c4914 commit 46f9db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DynFusionEPI/DynFusionDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public override bool CustomActivate()
// FusionSymbol.ExtenderFusionRoomDataReservedSigs.DeviceExtenderSigChange += new DeviceExtenderJoinChangeEventHandler(ExtenderFusionRoomDataReservedSigs_DeviceExtenderSigChange);
if ( string.IsNullOrEmpty(FusionSymbol.ParameterRoomName))
{
FusionSymbol.ParameterRoomName = EthernetHelper.LanHelper.Hostname + "-program " + InitialParametersClass.ApplicationNumber + CrestronEthernetHelper.GetEthernetParameter(CrestronEthernetHelper.ETHERNET_PARAMETER_TO_GET.GET_CURRENT_IP_ADDRESS, 0) +CrestronEthernetHelper.GetEthernetParameter(CrestronEthernetHelper.ETHERNET_PARAMETER_TO_GET.GET_MAC_ADDRESS, 0);
FusionSymbol.ParameterRoomName = EthernetHelper.LanHelper.Hostname + " - Program: " + InitialParametersClass.ApplicationNumber + " - " + CrestronEthernetHelper.GetEthernetParameter(CrestronEthernetHelper.ETHERNET_PARAMETER_TO_GET.GET_CURRENT_IP_ADDRESS, 0) + " - " + CrestronEthernetHelper.GetEthernetParameter(CrestronEthernetHelper.ETHERNET_PARAMETER_TO_GET.GET_MAC_ADDRESS, 0);

}

Expand Down

0 comments on commit 46f9db5

Please sign in to comment.