aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/updateController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-06-02 08:40:18 +0200
committerGravatar GitHub <noreply@github.com> 2022-06-02 08:40:18 +0200
commitf988b996ab69104bc45b222fa88d34b5c78f98b3 (patch)
tree3c9b4f40ab717755ba0c1b7b49a1ea6db1a2ca09 /app/Controllers/updateController.php
parent15de58a024649fc66d93a8db8d19b484b20cef38 (diff)
Fix update URL (#4399)
#fix https://github.com/FreshRSS/FreshRSS/issues/4395 maybe
Diffstat (limited to 'app/Controllers/updateController.php')
-rw-r--r--app/Controllers/updateController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/updateController.php b/app/Controllers/updateController.php
index 98e06bf10..d9b817412 100644
--- a/app/Controllers/updateController.php
+++ b/app/Controllers/updateController.php
@@ -163,7 +163,7 @@ class FreshRSS_update_Controller extends FreshRSS_ActionController {
return;
}
} else {
- $auto_update_url = FreshRSS_Context::$system_conf->auto_update_url . '?v=' . FRESHRSS_VERSION;
+ $auto_update_url = FreshRSS_Context::$system_conf->auto_update_url . '/?v=' . FRESHRSS_VERSION;
Minz_Log::debug('HTTP GET ' . $auto_update_url);
$c = curl_init($auto_update_url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);