mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Fix TVMaze processing
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user