aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Feed.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-11-08 20:24:24 +0100
committerGravatar GitHub <noreply@github.com> 2023-11-08 20:24:24 +0100
commit44a7c54a5a6afb72937425cee0d53610e440ec60 (patch)
tree3814bd499c1d59af39620c07cabb2f805e4ca54a /app/Models/Feed.php
parent348028a29043b7d1d0f80544c44f0454b2c375c3 (diff)
Update WebSub documentation a bit (#5829)
* Update WebSub documentation a bit * Marien prefers not to promote his hub too much :-)
Diffstat (limited to 'app/Models/Feed.php')
-rw-r--r--app/Models/Feed.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Models/Feed.php b/app/Models/Feed.php
index b75d12b4e..ed1468744 100644
--- a/app/Models/Feed.php
+++ b/app/Models/Feed.php
@@ -1088,7 +1088,8 @@ class FreshRSS_Feed extends Minz_Model {
CURLOPT_POSTFIELDS => http_build_query([
'hub.verify' => 'sync',
'hub.mode' => $state ? 'subscribe' : 'unsubscribe',
- 'hub.topic' => $url, 'hub.callback' => $callbackUrl,
+ 'hub.topic' => $url,
+ 'hub.callback' => $callbackUrl,
]),
CURLOPT_USERAGENT => FRESHRSS_USERAGENT,
CURLOPT_MAXREDIRS => 10,