diff options
author | Vitiko <[email protected]> | 2021-04-01 22:39:09 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-01 22:39:09 -0400 |
commit | 940b6428ddb744c46a35d6e547400b5e7238bada (patch) | |
tree | 2126c02b9f5621717bbc11aaac7d3eaf9c283ff6 | |
parent | 3a71d6b0626e63cf0f84c358566c3cb576563594 (diff) | |
download | bazarr-940b6428ddb744c46a35d6e547400b5e7238bada.tar.gz bazarr-940b6428ddb744c46a35d6e547400b5e7238bada.zip |
Fixed bad protocol for Argenteam provider
-rw-r--r-- | libs/subliminal_patch/providers/argenteam.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/subliminal_patch/providers/argenteam.py b/libs/subliminal_patch/providers/argenteam.py index 6d72d7529..a02f71308 100644 --- a/libs/subliminal_patch/providers/argenteam.py +++ b/libs/subliminal_patch/providers/argenteam.py @@ -212,7 +212,7 @@ class ArgenteamProvider(Provider, ProviderSubtitleArchiveMixin): movie_kind = "episode" if is_episode else "movie" page_link = f"{BASE_URL}{movie_kind}/{aid}" release_info = self.combine_release_info(r) - download_link = s["uri"].replace("http", "https") + download_link = s["uri"].replace("http://", "https://") matches_ = self.get_query_matches( video, |