mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
cinecalidad: improve titles (#9709)
This commit is contained in:

committed by
GitHub

parent
805f40ae4d
commit
2d7c93d243
@@ -49,8 +49,8 @@ namespace Jackett.Common.Indexers
|
||||
|
||||
var language = new SelectItem(new Dictionary<string, string>
|
||||
{
|
||||
{"castellano", "Spanish Castellano"},
|
||||
{"latino", "Spanish Latino"}
|
||||
{"castellano", "Castilian Spanish"},
|
||||
{"latino", "Latin American Spanish"}
|
||||
})
|
||||
{
|
||||
Name = "Select language",
|
||||
@@ -160,8 +160,8 @@ namespace Jackett.Common.Indexers
|
||||
var title = qImg.GetAttribute("title");
|
||||
if (!CheckTitleMatchWords(query.GetQueryString(), title))
|
||||
continue; // skip if it doesn't contain all words
|
||||
title += _language.Equals("castellano") ? " SPANiSH" : " LATiN-SPANiSH";
|
||||
title += " DUAL 1080p BDRip x264";
|
||||
title += _language.Equals("castellano") ? " MULTi/SPANiSH" : " MULTi/LATiN SPANiSH";
|
||||
title += " 1080p BDRip x264";
|
||||
|
||||
var banner = new Uri(qImg.GetAttribute("src"));
|
||||
var link = new Uri(row.QuerySelector("a").GetAttribute("href"));
|
||||
|
Reference in New Issue
Block a user