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

Don't treat links to redyoutube.com as YouTube

Test Plan: `http://redyoutube.com/?v=1`

Reviewers: tuomaspelkonen, epriestley

Reviewed By: epriestley

CC: aran, epriestley

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

vrana 382bafa2 d7b8bc89

+1 -1
+1 -1
src/infrastructure/markup/remarkup/markuprule/PhabricatorRemarkupRuleYoutube.php
··· 26 26 $this->uri = new PhutilURI($text); 27 27 28 28 if ($this->uri->getDomain() && 29 - preg_match('/youtube\.com$/', $this->uri->getDomain())) { 29 + preg_match('/(^|\.)youtube\.com$/', $this->uri->getDomain())) { 30 30 return $this->markupYoutubeLink(); 31 31 } 32 32