Skip to content

Commit

Permalink
Added BASE_URL option
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Oct 19, 2024
1 parent a97f5c1 commit 2466e8a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="https://i.imgur.com/FIGZdR3.png">
</p>

Current version: **3.3.3**
Current version: **3.3.4**

# About
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).
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ app.get('/channels/:id.m3u8', async (req, res) => {
`Could not get a playlist for channel #${id}. Please make sure there is an event scheduled and you have access to it.`,
);

delete appStatus.channels[id];
removeChannelStatus(id);

notFound(req, res);
return;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eplustv",
"version": "3.3.3",
"version": "3.3.4",
"description": "",
"scripts": {
"start": "ts-node index.ts",
Expand Down

0 comments on commit 2466e8a

Please sign in to comment.