Skip to content

Commit

Permalink
Merge pull request #610 from phunkyfish/fix-ch-number
Browse files Browse the repository at this point in the history
Fix "ch-number" tag being ignored - Nexus
  • Loading branch information
phunkyfish authored Jun 19, 2022
2 parents f050a34 + cca64ee commit 2ef0ad7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvr.iptvsimple/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.iptvsimple"
version="20.3.0"
version="20.3.1"
name="IPTV Simple Client"
provider-name="nightik and Ross Nicholson">
<requires>@ADDON_DEPENDS@
Expand Down
3 changes: 3 additions & 0 deletions pvr.iptvsimple/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v20.3.1
- Fix ch-number tag being ignored

v20.3.0
- Choose a suitable default stream type for default and append catchup modes
- Allow catchup tags in M3U header
Expand Down
2 changes: 1 addition & 1 deletion src/iptvsimple/PlaylistLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ std::string PlaylistLoader::ParseIntoChannel(const std::string& line, Channel& c

// If don't have a channel number try another format
if (strChnlNo.empty())
ReadMarkerValue(infoLine, CHANNEL_NUMBER_MARKER);
strChnlNo = ReadMarkerValue(infoLine, CHANNEL_NUMBER_MARKER);

if (!strChnlNo.empty() && !Settings::GetInstance().NumberChannelsByM3uOrderOnly())
{
Expand Down

0 comments on commit 2ef0ad7

Please sign in to comment.