mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 14:17:46 -04:00
Removing TuSubtitulo per provider request. #1591
This commit is contained in:
parent
bc35dea40f
commit
3d936ffccf
2 changed files with 7 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue