@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Allow Feed HTTP hooks to be https://

Summary: Fixes T3503. "HTTPFuture" is specialized and HTTP-only; "HTTPSFuture" is generalized and HTTP+HTTPS.

Test Plan: yeah not so much

Reviewers: btrahan, edward

Reviewed By: edward

CC: aran

Maniphest Tasks: T3503

Differential Revision: https://secure.phabricator.com/D6378

+1 -1
+1 -1
src/applications/feed/worker/FeedPublisherHTTPWorker.php
··· 16 16 'epoch' => $data->getEpoch(), 17 17 ); 18 18 19 - id(new HTTPFuture($uri, $post_data)) 19 + id(new HTTPSFuture($uri, $post_data)) 20 20 ->setMethod('POST') 21 21 ->setTimeout(30) 22 22 ->resolvex();