forked from blallo/rss-bridge
make the bridge compatible with wordpress with no static URL (#469)
This commit is contained in:
parent
1028e538ab
commit
a1764a9fe2
1 changed files with 5 additions and 2 deletions
|
@ -66,8 +66,11 @@ class WordPressBridge extends FeedExpander {
|
|||
// just in case someone find a way to access local files by playing with the url
|
||||
returnClientError('The url parameter must either refer to http or https protocol.');
|
||||
}
|
||||
|
||||
$this->collectExpandableDatas($this->getURI().'/feed/atom/');
|
||||
try{
|
||||
$this->collectExpandableDatas($this->getURI().'/feed/atom/');
|
||||
}catch (HttpException $e){
|
||||
$this->collectExpandableDatas($this->getURI().'/?feed=atom');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue