Commit 06f1fc4b authored by Nico Schallehn's avatar Nico Schallehn

test

parent 0a78d09c
...@@ -554,7 +554,13 @@ class Media { ...@@ -554,7 +554,13 @@ class Media {
$tmdb = $this->jsonCacheDecoder($url); $tmdb = $this->jsonCacheDecoder($url);
if(isset($tmdb["tv_results"][0])){ if(isset($tmdb["tv_results"][0])){
$array["SerienName"] = $tmdb["tv_results"][0]["original_name"]; $array["SerienName"] = $tmdb["tv_results"][0]["original_name"];
$url3="https://api.themoviedb.org/3/tv/".$tmdb["tv_results"][0]["id"]."/season/".$array["Season"]."?api_key=".$this->config["ApiKeys"]['Tmdb_Key']."&language=de";
echo $url3.PHP_EOL;
$tmdb3 = $this->jsonCacheDecoder($url3);
var_dump($tmdb3);
exit;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment