mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 20:02:04 +01:00
- Sony: DVB-T and DVB-C lists are now separated into "TV", "Radio" and "Other" lists, each with their own unique numbering
- Samsung ZIP: deleting a channel now really deletes it from the file, instead of marking it as deleted and assigning -1 as channel number (which appears as 65535 on some models)
This commit is contained in:
@@ -149,9 +149,11 @@ namespace ChanSort.Api
|
||||
if (ch == '\0')
|
||||
{
|
||||
// read as many bytes as necessary to get a character
|
||||
char[] charArray = new char[1];
|
||||
for (int byteCnt = 1; decoder.GetChars(name, i, byteCnt, charArray, 0) == 0; byteCnt++)
|
||||
++i;
|
||||
char[] charArray = new char[5];
|
||||
int byteCnt;
|
||||
for (byteCnt = 1; decoder.GetChars(name, i, byteCnt, charArray, 0) == 0; byteCnt++)
|
||||
{
|
||||
}
|
||||
ch = charArray[0];
|
||||
}
|
||||
if (ch == '\0')
|
||||
|
||||
Reference in New Issue
Block a user