Skip to content

Commit

Permalink
v0.9.4 -> increased timeout to get stream
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ngr31 committed Apr 19, 2022
1 parent 3a4101e commit d6ea405
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 @@ -4,7 +4,7 @@
<img src="https://i.imgur.com/FIGZdR3.png">
</p>

Current version: **0.9.3**
Current version: **0.9.4**

## About
This takes ESPN+ 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 or VLC.
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": "0.9.3",
"version": "0.9.4",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion services/get-stream-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const getStreamData = async (eventId: string) => {

let authToken = null;
let m3u8 = null;
let totalTries = 45;
let totalTries = 120;
let currentTry = 0;

const close = async () => {
Expand Down

0 comments on commit d6ea405

Please sign in to comment.