mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-09 15:17:02 +02:00
- fixed "Export to Excel" (copies the list as tab-separated text into clipboard)
- included latest translation to Polish (thanks to J.D.) - reorganized File menu and tool bar - allow renaming channels in SatcoDX channel lists (\*.sdx) - improved support for Panasonic LS 500 / LX 700 series
This commit is contained in:
@@ -366,8 +366,10 @@ class Serializer : SerializerBase
|
||||
{
|
||||
var a = e.Attributes;
|
||||
var listId = int.Parse(a["FavoriteId"].InnerText);
|
||||
var serviceId = int.Parse(a["ServiceId"].InnerText);
|
||||
var lcn = int.Parse(a["Lcn"].InnerText);
|
||||
if (!int.TryParse(a["ServiceId"].InnerText, out var serviceId))
|
||||
return;
|
||||
if (!int.TryParse(a["Lcn"].InnerText, out var lcn))
|
||||
return;
|
||||
|
||||
if (!this.channelsById.TryGetValue(serviceId, out var c))
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user