summaryrefslogtreecommitdiff
path: root/bridges/EZTVBridge.php
diff options
context:
space:
mode:
authorJohannes Schauer Marin Rodrigues <josch@debian.org>2022-01-21 21:54:19 +0100
committerJohannes Schauer Marin Rodrigues <josch@debian.org>2022-01-21 21:54:19 +0100
commitabd4361bafba7f3751310d0e3066c066f480afb1 (patch)
tree1e127fe1201f20ad0c533e3190e7a7dce84c5bed /bridges/EZTVBridge.php
parentdaeb2c0913653d197fad2a75010cfc6034c6a9e8 (diff)
New upstream version 2022-01-20+dfsg1
Diffstat (limited to 'bridges/EZTVBridge.php')
-rw-r--r--bridges/EZTVBridge.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/bridges/EZTVBridge.php b/bridges/EZTVBridge.php
index c016ff3..6e0f7e9 100644
--- a/bridges/EZTVBridge.php
+++ b/bridges/EZTVBridge.php
@@ -35,8 +35,7 @@ on EZTV. Get showID from URLs in https://eztv.ch/shows/showID/show-full-name.';
foreach($showList as $showID) {
// Get show page
- $html = getSimpleHTMLDOM(self::URI . 'shows/' . rawurlencode($showID) . '/')
- or returnServerError('Could not request EZTV for id "' . $showID . '"');
+ $html = getSimpleHTMLDOM(self::URI . 'shows/' . rawurlencode($showID) . '/');
// Loop on each element that look like an episode entry...
foreach($html->find('.forum_header_border') as $element) {