Skip to content

Commit 2466e8a

Browse files
author
Your Name
committed
Added BASE_URL option
1 parent a97f5c1 commit 2466e8a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="https://i.imgur.com/FIGZdR3.png">
33
</p>
44

5-
Current version: **3.3.3**
5+
Current version: **3.3.4**
66

77
# About
88
This takes ESPN/ESPN+, FOX Sports, Paramount+, MSG+, NFL+, B1G+, NESN, Mountain West, FloSports, CBS Sports, or MLB.tv programming and transforms it into a "live TV" experience with virtual linear channels. It will discover what is on, and generate a schedule of channels that will give you M3U and XMLTV files that you can import into something like [Jellyfin](https://jellyfin.org) or [Channels](https://getchannels.com).

index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ app.get('/channels/:id.m3u8', async (req, res) => {
152152
`Could not get a playlist for channel #${id}. Please make sure there is an event scheduled and you have access to it.`,
153153
);
154154

155-
delete appStatus.channels[id];
155+
removeChannelStatus(id);
156156

157157
notFound(req, res);
158158
return;

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eplustv",
3-
"version": "3.3.3",
3+
"version": "3.3.4",
44
"description": "",
55
"scripts": {
66
"start": "ts-node index.ts",

0 commit comments

Comments
 (0)