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

Refine "invalid cursor" exception to have a little more information

Summary: Ref T8780.

Test Plan: See @chad.

Reviewers: chad

Reviewed By: chad

Subscribers: chad, epriestley

Maniphest Tasks: T8780

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

+3 -2
+3 -2
src/infrastructure/query/policy/PhabricatorCursorPagedPolicyAwareQuery.php
··· 410 410 if (!$object) { 411 411 throw new Exception( 412 412 pht( 413 - 'Cursor "%s" does not identify a valid object.', 414 - $cursor)); 413 + 'Cursor "%s" does not identify a valid object in query "%s".', 414 + $cursor, 415 + get_class($this))); 415 416 } 416 417 417 418 return $object;