Skip to content

Commit

Permalink
Fix issue with FOX Sports quality loop
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ngr31 committed Apr 14, 2024
1 parent 671a31e commit fb3eded
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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: **2.1.11**
Current version: **2.1.12**

# About
This takes ESPN/ESPN+, FOX Sports, Paramount+, MSG+, and 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
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": "2.1.11",
"version": "2.1.12",
"description": "",
"scripts": {
"start": "ts-node index.ts",
Expand Down
6 changes: 3 additions & 3 deletions services/fox-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class FoxHandler {
{
deviceHeight: 2160,
deviceWidth: 3840,
maxRes: streamOrder[resIndex],
maxRes: streamOrder[a],
os: 'Android',
osv: '11.0.0',
streamId: eventId,
Expand All @@ -317,8 +317,8 @@ class FoxHandler {
break;
} catch (e) {
console.log(
`Could not get stream data for ${streamOrder[resIndex]}.${
streamOrder[resIndex + 1] && `Trying to get ${streamOrder[resIndex + 1]} next...`
`Could not get stream data for ${streamOrder[a]}.${
streamOrder[a + 1] ? `Trying to get ${streamOrder[a + 1]} next...` : ''
}`,
);
}
Expand Down

0 comments on commit fb3eded

Please sign in to comment.