From 4d7494b6e2873fc277b9c8838082a02ecfa8e510 Mon Sep 17 00:00:00 2001 From: freearhey Date: Sat, 20 Jul 2019 18:50:19 +0300 Subject: [PATCH] Rename index.topic.m3u to index.content.m3u --- README.md | 4 ++-- helpers/generate.js | 4 ++-- index.topic.m3u => index.content.m3u | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename index.topic.m3u => index.content.m3u (100%) diff --git a/README.md b/README.md index 4781d127d7..c6232992aa 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ Below you can find a manually selected list of such applications for different p If your application does not support nested playlists, you can instead use one of these playlists: -- `https://raw.githubusercontent.com/freearhey/iptv/master/index.full.m3u` (grouped by country and topic) +- `https://raw.githubusercontent.com/freearhey/iptv/master/index.full.m3u` (grouped by country and content) - `https://raw.githubusercontent.com/freearhey/iptv/master/index.country.m3u` (grouped only by country) -- `https://raw.githubusercontent.com/freearhey/iptv/master/index.topic.m3u` (grouped only by topic) +- `https://raw.githubusercontent.com/freearhey/iptv/master/index.content.m3u` (grouped only by content) Or select a playlist for a specific country from the list below. diff --git a/helpers/generate.js b/helpers/generate.js index 819e19b3d8..537cad27b5 100644 --- a/helpers/generate.js +++ b/helpers/generate.js @@ -1,7 +1,7 @@ const util = require('./util') const urlParser = require('url') -const types = ['full', 'country', 'topic'] +const types = ['full', 'country', 'content'] const debug = false let cache = {} let stats = { @@ -48,7 +48,7 @@ function init() { groupTitle = [ countryName, channel.group ].filter(i => i).join(';') } else if(type === 'country') { groupTitle = countryName - } else if(type === 'topic') { + } else if(type === 'content') { groupTitle = channel.group } diff --git a/index.topic.m3u b/index.content.m3u similarity index 100% rename from index.topic.m3u rename to index.content.m3u