mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-09 16:38:50 +00:00
[FindfeedAction.php] Use relative URL in Feed Link (#3820)
The FindFeed action used absolute URL. This breaks the usage of RSS Bridge behind a reverse proxy in a container. Fixes #3801 for the Find Feed action
This commit is contained in:
parent
deb9a7269e
commit
c3d9383523
@ -56,7 +56,7 @@ class FindfeedAction implements ActionInterface
|
|||||||
$bridgeParams['bridge'] = $bridgeClassName;
|
$bridgeParams['bridge'] = $bridgeClassName;
|
||||||
$bridgeParams['format'] = $format;
|
$bridgeParams['format'] = $format;
|
||||||
$content = [
|
$content = [
|
||||||
'url' => get_home_page_url() . '?action=display&' . http_build_query($bridgeParams),
|
'url' => './?action=display&' . http_build_query($bridgeParams),
|
||||||
'bridgeParams' => $bridgeParams,
|
'bridgeParams' => $bridgeParams,
|
||||||
'bridgeData' => $bridgeData,
|
'bridgeData' => $bridgeData,
|
||||||
'bridgeMeta' => [
|
'bridgeMeta' => [
|
||||||
|
Loading…
Reference in New Issue
Block a user