Installing over development build (1 Viewer)

Sebastiii

Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    So maybe other part need to be checked too.
    Also it's possible that TVE35 has the bug too lol
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Maybe @Benoire you can add the change in your build :)

    Code:
          // exporting radio channel groups
          if (exportradiogroups)
          {
            XmlNode nodeRadioChannelGroups = xmlDoc.CreateElement("radiochannelgroups");
            IList<RadioChannelGroup> radiochannelgroups = RadioChannelGroup.ListAll();
            foreach (RadioChannelGroup radiogroup in radiochannelgroups)
            {
              XmlNode nodeRadioChannelGroup = xmlDoc.CreateElement("radiochannelgroup");
              AddAttribute(nodeRadioChannelGroup, "GroupName", radiogroup.GroupName);
              AddAttribute(nodeRadioChannelGroup, "SortOrder", radiogroup.SortOrder.ToString());
              XmlNode nodeRadioGroupMap = xmlDoc.CreateElement("mappings");
              IList<RadioGroupMap> maps = radiogroup.ReferringRadioGroupMap();
              foreach (RadioGroupMap map in maps)
              {
                XmlNode nodeMap = xmlDoc.CreateElement("map");
                if (map.ReferencedChannel() != null)
                {
                  AddAttribute(nodeMap, "ChannelName", map.ReferencedChannel().DisplayName);
                }
                AddAttribute(nodeMap, "SortOrder", map.SortOrder.ToString());
                nodeRadioGroupMap.AppendChild(nodeMap);
              }
              nodeRadioChannelGroup.AppendChild(nodeRadioGroupMap);
              nodeRadioChannelGroups.AppendChild(nodeRadioChannelGroup);
            }
            rootElement.AppendChild(nodeRadioChannelGroups);
          }
     

    Users who are viewing this thread

    Top Bottom