mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
cinecalidad: new domain
This commit is contained in:
@@ -37,7 +37,8 @@ namespace Jackett.Common.Indexers
|
|||||||
"https://www5.cine-calidad.com/",
|
"https://www5.cine-calidad.com/",
|
||||||
"https://v3.cine-calidad.com/",
|
"https://v3.cine-calidad.com/",
|
||||||
"https://www.cine-calidad.com/",
|
"https://www.cine-calidad.com/",
|
||||||
"https://www.cinecalidad.lat/"
|
"https://www.cinecalidad.lat/",
|
||||||
|
"https://cinecalidad.dev/"
|
||||||
};
|
};
|
||||||
|
|
||||||
public Cinecalidad(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps,
|
public Cinecalidad(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps,
|
||||||
@@ -45,7 +46,7 @@ namespace Jackett.Common.Indexers
|
|||||||
: base(id: "cinecalidad",
|
: base(id: "cinecalidad",
|
||||||
name: "Cinecalidad",
|
name: "Cinecalidad",
|
||||||
description: "Películas Full HD en Latino Dual.",
|
description: "Películas Full HD en Latino Dual.",
|
||||||
link: "https://cinecalidad.dev/",
|
link: "https://cinecalidad.ms/",
|
||||||
caps: new TorznabCapabilities
|
caps: new TorznabCapabilities
|
||||||
{
|
{
|
||||||
MovieSearchParams = new List<MovieSearchParam> { MovieSearchParam.Q }
|
MovieSearchParams = new List<MovieSearchParam> { MovieSearchParam.Q }
|
||||||
@@ -125,10 +126,10 @@ namespace Jackett.Common.Indexers
|
|||||||
protectedLink = Base64Decode(protectedLink);
|
protectedLink = Base64Decode(protectedLink);
|
||||||
// turn
|
// turn
|
||||||
// link=https://cinecalidad.dev/pelicula/la-chica-salvaje/
|
// link=https://cinecalidad.dev/pelicula/la-chica-salvaje/
|
||||||
// and
|
// and
|
||||||
// protectedlink=https://cinecalidad.dev/links/MS8xMDA5NTIvMQ==
|
// protectedlink=https://cinecalidad.dev/links/MS8xMDA5NTIvMQ==
|
||||||
// into
|
// into
|
||||||
// https://cinecalidad.dev/pelicula/la-chica-salvaje/?link=MS8xMDA5NTIvMQ==
|
// https://cinecalidad.dev/pelicula/la-chica-salvaje/?link=MS8xMDA5NTIvMQ==
|
||||||
var protectedLinkSplit = protectedLink.Split('/');
|
var protectedLinkSplit = protectedLink.Split('/');
|
||||||
var key = protectedLinkSplit.Last();
|
var key = protectedLinkSplit.Last();
|
||||||
protectedLink = link.ToString() + "?link=" + key;
|
protectedLink = link.ToString() + "?link=" + key;
|
||||||
|
Reference in New Issue
Block a user