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

Use a path digest when building blame cache keys

Keys have a maximum length of 128, and long paths could cause key lengths to exceed this.

Auditors: chad

+3 -1
+3 -1
src/applications/diffusion/query/blame/DiffusionBlameQuery.php
··· 114 114 continue; 115 115 } 116 116 117 - $map[$path] = "blame({$repository_id}, {$identifier}, {$path}, raw)"; 117 + $path_hash = PhabricatorHash::digestForIndex($path); 118 + 119 + $map[$path] = "blame({$repository_id}, {$identifier}, {$path_hash}, raw)"; 118 120 } 119 121 120 122 return $map;