diff --git a/mRemoteV1/Config/Serializers/DataTableSerializer.cs b/mRemoteV1/Config/Serializers/DataTableSerializer.cs index 9252b45f..189c5f95 100644 --- a/mRemoteV1/Config/Serializers/DataTableSerializer.cs +++ b/mRemoteV1/Config/Serializers/DataTableSerializer.cs @@ -173,7 +173,7 @@ namespace mRemoteNG.Config.Serializers _currentNodeIndex++; var dataRow = _dataTable.NewRow(); dataRow["Name"] = connectionInfo.Name; - dataRow["Type"] = ConnectionTreeNode.GetNodeType(connectionInfo.TreeNode).ToString(); + dataRow["Type"] = connectionInfo.GetTreeNodeType().ToString(); dataRow["ConstantID"] = connectionInfo.ConstantID; dataRow["ParentID"] = connectionInfo.Parent.ConstantID; dataRow["PositionID"] = _currentNodeIndex;