[MangareaderBridge] Fix double forward slashes
Double forward slashes caused all external links in the feed to break
This commit is contained in:
parent
e221358ead
commit
fc9084eb17
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ class MangareaderBridge extends BridgeAbstract {
|
|||
|
||||
const MAINTAINER = 'logmanoriginal';
|
||||
const NAME = 'Mangareader Bridge';
|
||||
const URI = 'http://www.mangareader.net/';
|
||||
const URI = 'http://www.mangareader.net';
|
||||
const CACHE_TIMEOUT = 10800; // 3h
|
||||
const DESCRIPTION = 'Returns the latest updates, popular mangas or manga updates (new chapters)';
|
||||
|
||||
|
@ -240,7 +240,7 @@ EOD;
|
|||
break;
|
||||
default: return parent::getURI();
|
||||
}
|
||||
return self::URI . $path;
|
||||
return self::URI . '/' . $path;
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
|
|
Loading…
Reference in a new issue