Skip to content

Commit 1813ece

Browse files
author
Your Name
committed
Fix some language errors
1 parent 695938b commit 1813ece

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
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: **4.0.2**
5+
Current version: **4.0.3**
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).

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": "4.0.2",
3+
"version": "4.0.3",
44
"description": "",
55
"scripts": {
66
"start": "ts-node -r tsconfig-paths/register index.tsx",

services/espn-handler.ts

-3
Original file line numberDiff line numberDiff line change
@@ -507,9 +507,6 @@ class EspnHandler {
507507
}
508508
}
509509

510-
if (useEspnPlus) {
511-
console.log('Using ESPNPLUS variable is no longer needed. Please use the UI going forward');
512-
}
513510
if (useEspnPpv) {
514511
console.log('Using ESPN_PPV variable is no longer needed. Please use the UI going forward');
515512
}

views/Links.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const Links: FC<ILinksProps> = async ({baseUrl}) => {
3030
<tbody>
3131
<tr>
3232
<td>Normal</td>
33-
<td>Insert into Source section</td>
33+
<td>Insert into XMLTV Guide Data section</td>
3434
<td>
3535
<a href={xmltvUrl} class="secondary" target="_blank">
3636
{xmltvUrl}
@@ -39,7 +39,7 @@ export const Links: FC<ILinksProps> = async ({baseUrl}) => {
3939
</tr>
4040
<tr>
4141
<td>Normal</td>
42-
<td>Insert into XMLTV Guide Data section</td>
42+
<td>Insert into Source section</td>
4343
<td>
4444
<a href={channelsUrl} class="secondary" target="_blank">
4545
{channelsUrl}
@@ -50,7 +50,7 @@ export const Links: FC<ILinksProps> = async ({baseUrl}) => {
5050
<>
5151
<tr>
5252
<td>Linear</td>
53-
<td>Insert into Source section</td>
53+
<td>Insert into XMLTV Guide Data section</td>
5454
<td>
5555
<a href={linearXmltvUrl} class="secondary" target="_blank">
5656
{linearXmltvUrl}
@@ -59,7 +59,7 @@ export const Links: FC<ILinksProps> = async ({baseUrl}) => {
5959
</tr>
6060
<tr>
6161
<td>Linear</td>
62-
<td>Insert into XMLTV Guide Data section</td>
62+
<td>Insert into Source section</td>
6363
<td>
6464
<a href={linearChannelsUrl} class="secondary" target="_blank">
6565
{linearChannelsUrl}

0 commit comments

Comments
 (0)