diff options
author | Christian Segundo <[email protected]> | 2023-04-20 12:35:57 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-20 06:35:57 -0400 |
commit | e263927779365a641a9018016763ebf05c769fdd (patch) | |
tree | 52ea58268e689e7ef9608b36a3e91f2fac814768 | |
parent | 93e63246bff145720fed82ae8b236a6669926b49 (diff) | |
download | bazarr-e263927779365a641a9018016763ebf05c769fdd.tar.gz bazarr-e263927779365a641a9018016763ebf05c769fdd.zip |
Fixed yifysubtitles url
-rw-r--r-- | libs/subliminal_patch/providers/yifysubtitles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/subliminal_patch/providers/yifysubtitles.py b/libs/subliminal_patch/providers/yifysubtitles.py index d8b0e88d3..37715f314 100644 --- a/libs/subliminal_patch/providers/yifysubtitles.py +++ b/libs/subliminal_patch/providers/yifysubtitles.py @@ -95,7 +95,7 @@ class YifySubtitlesProvider(Provider): languages = {Language(l, c) for (_, l, c) in YifyLanguages} languages.update(set(Language.rebuild(l, hi=True) for l in languages)) - server_url = 'https://yifysubtitles.org' + server_url = 'https://yifysubtitles.ch' video_types = (Movie,) def initialize(self): |