From d46ed2f004e9c602410b495e171bea79f4471d94 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Mon, 25 Mar 2019 19:18:47 +0100 Subject: [PATCH] Add Italian in Accept-Language --- plugin.video.alfa/core/httptools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.video.alfa/core/httptools.py b/plugin.video.alfa/core/httptools.py index b4855e58..cfb69b86 100644 --- a/plugin.video.alfa/core/httptools.py +++ b/plugin.video.alfa/core/httptools.py @@ -48,7 +48,7 @@ ficherocookies = os.path.join(config.get_data_path(), "cookies.dat") default_headers = dict() default_headers["User-Agent"] = "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3163.100 Safari/537.36" default_headers["Accept"] = "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8" -default_headers["Accept-Language"] = "es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3" +default_headers["Accept-Language"] = "es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3,it-IT,it;q=0.8" default_headers["Accept-Charset"] = "UTF-8" default_headers["Accept-Encoding"] = "gzip"