Merge branch 'main' into add-google-tv-status

This commit is contained in:
David
2023-10-14 13:47:38 +02:00
committed by GitHub
3 changed files with 7 additions and 6 deletions

View File

@@ -18,12 +18,13 @@ jobs:
steps:
# Get the repository's code
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
# Update description
- name: Update repo description
uses: peter-evans/dockerhub-description@v2
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: dmunozv04/isponsorblocktv
repository: dmunozv04/isponsorblocktv
short-description: ${{ github.event.repository.description }}

View File

@@ -9,7 +9,7 @@ Check the [wiki](https://github.com/dmunozv04/iSponsorBlockTV/wiki/Installation)
Warning: docker armv7 builds have been deprecated. Amd64 and arm64 builds are still available.
## Compatibility
Leyend: ✅ = Working, ❌ = Not working, ❔ = Not tested
Legend: ✅ = Working, ❌ = Not working, ❔ = Not tested
Open an issue/pull request if you have tested a device that isn't listed here.
@@ -25,7 +25,7 @@ Open an issue/pull request if you have tested a device that isn't listed here.
| Fire TV | ❔ |
| Nintendo Switch | ✅ |
| Xbox One/Series | ❔ |
| Playstation 4/5 | |
| Playstation 4/5 | |
## Usage
Run iSponsorBlockTV on a computer that has network access.

View File

@@ -138,7 +138,7 @@ class ApiHelper:
segment_dict["start"] - segment_before_end < 1
): # Less than 1 second appart, combine them and skip them together
segment_dict["start"] = segment_before_start
segment_dict["UUID"].append(segment_before_UUID)
segment_dict["UUID"].extend(segment_before_UUID)
segments.pop()
segments.append(segment_dict)
except Exception: