@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.

Open Graph protocol meta tags: Set Type value to website

Summary:
Per https://ogp.me/#no_vertical, use 'website' instead of 'object'.

Closes T16199

Test Plan: Read docs; probably go to https://developers.facebook.com/tools/debug/ or https://www.linkedin.com/post-inspector/ and see what you get.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16199

Differential Revision: https://we.phorge.it/D26226

+1 -1
+1 -1
src/applications/maniphest/controller/ManiphestTaskDetailController.php
··· 245 245 246 246 $v = []; 247 247 $v['og:site_name'] = PlatformSymbols::getPlatformServerName(); 248 - $v['og:type'] = 'object'; 248 + $v['og:type'] = 'website'; 249 249 $v['og:url'] = PhabricatorEnv::getProductionURI($task->getURI()); 250 250 $v['og:title'] = $task->getMonogram().' '.$task->getTitle(); 251 251