From fb4005c99ba98ca090cf69e70a8d0dbb7ca3d233 Mon Sep 17 00:00:00 2001 From: Horst Beham Date: Sun, 11 Apr 2021 21:02:10 +0200 Subject: [PATCH] - Philips ChannelMap\_30: fixed bug that caused favorite lists to be in wrong order --- source/ChanSort.Loader.Philips/BinarySerializer.cs | 2 +- source/changelog.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/source/ChanSort.Loader.Philips/BinarySerializer.cs b/source/ChanSort.Loader.Philips/BinarySerializer.cs index f0b3b8e..f08a7a6 100644 --- a/source/ChanSort.Loader.Philips/BinarySerializer.cs +++ b/source/ChanSort.Loader.Philips/BinarySerializer.cs @@ -1227,7 +1227,7 @@ namespace ChanSort.Loader.Philips ++order; cmd.Parameters["@id"].Value = order; cmd.Parameters["@channelId"].Value = ch.Id; - cmd.Parameters["@rank"].Value = order - 1; + cmd.Parameters["@rank"].Value = favPos; cmd.ExecuteNonQuery(); } } diff --git a/source/changelog.md b/source/changelog.md index d2835c1..d799c9a 100644 --- a/source/changelog.md +++ b/source/changelog.md @@ -1,6 +1,9 @@ ChanSort Change Log =================== +2021-04-11_1900 +- Philips ChannelMap\_30: fixed bug that caused favorite lists to be in wrong order + 2021-04-11 - Philips: added support for ChannelMap\_30 format - LG Web OS 5: fixed a bug that wrote wrong values for "audioPid" to the file (which had no effect on the TV's operation)