Fix TVMaze processing

This commit is contained in:
DariusIII
2016-03-12 00:00:53 +01:00
parent 960ae429e9
commit ed153b2557
2 changed files with 5 additions and 3 deletions
+2
View File
@@ -1,3 +1,5 @@
2016-03-12 DariusIII
* Upd: Fix TVMaze processing
2016-03-10 DariusIII
* Fix: Fix object to string conversion in processing/tv/TVDB.php
* Upd: Update composer.json of the project.
+3 -3
View File
@@ -1,7 +1,7 @@
<?php
namespace newznab\processing\tv;
use JPinkney\TVMaze\Client;
use JPinkney\TVMaze\TVMaze as Client;
use newznab\ReleaseImage;
/**
@@ -16,7 +16,7 @@ class TVMaze extends TV
/**
* Client for TVMaze API
*
* @var \JPinkney\TVMaze\Client
* @var \JPinkney\TVMaze\TVMaze
*/
public $client;
@@ -35,7 +35,7 @@ class TVMaze extends TV
public function __construct(array $options = [])
{
parent::__construct($options);
$this->client = new \JPinkney\TVMaze\TVMaze();
$this->client = new Client();
}
/**