diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd06596b..ecbb0b21 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: brew install ffmpeg else # sudo add-apt-repository -y "deb http://azure.archive.ubuntu.com/ubuntu groovy main multiverse restricted universe" - # sudo apt-get update -y + sudo apt-get update sudo apt-get install -y libavutil-dev libavcodec-dev libavformat-dev fi - name: Enabling windows compilations tools diff --git a/Kyoo.WebApp/Front b/Kyoo.WebApp/Front index dca10903..865b82ec 160000 --- a/Kyoo.WebApp/Front +++ b/Kyoo.WebApp/Front @@ -1 +1 @@ -Subproject commit dca10903ff54a8999732695b5c2a0a5c94f85200 +Subproject commit 865b82ec43f37b8afc173259b66566d8ad4c18de diff --git a/Kyoo/Views/SubtitleApi.cs b/Kyoo/Views/SubtitleApi.cs index e4f94887..b6681841 100644 --- a/Kyoo/Views/SubtitleApi.cs +++ b/Kyoo/Views/SubtitleApi.cs @@ -51,7 +51,7 @@ namespace Kyoo.Api { string extension = null; - if (slug.Count(x => x == '.') == 2) + if (slug.Count(x => x == '.') == 3) { int idx = slug.LastIndexOf('.'); extension = slug[(idx + 1)..];