Removing TuSubtitulo per provider request. #1591

This commit is contained in:
morpheus65535 2021-10-26 06:47:59 -04:00
parent bc35dea40f
commit 3d936ffccf
2 changed files with 7 additions and 2 deletions

View file

@ -220,7 +220,8 @@ export const ProviderList: Readonly<ProviderInfo[]> = [
key: "tusubtitulo",
name: "Tusubtitulo.com",
description:
"LATAM Spanish / Spanish / English Subtitles Provider for TV Shows",
"Provider requested to be removed from Bazarr so it will always return no subtitles. Could potentially come back in the future with an upcoming premium account.",
// "LATAM Spanish / Spanish / English Subtitles Provider for TV Shows",
},
{
key: "titulky",

View file

@ -255,7 +255,11 @@ class TuSubtituloProvider(Provider):
return []
def list_subtitles(self, video, languages):
return self.query(video)
# return self.query(video)
# returning no subtitles automatically to prevent requests to the provider who explicitly requested to be
# removed in https://github.com/morpheus65535/bazarr/issues/1591
return []
@staticmethod
def _check_response(response):