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

Fix a followup notification paging error with partial objects

Summary: Ref T13623. In D21603, I made the "partial object" this query returns a raw row, which paging keys can no longer be extracted from properly.

Test Plan: Paged notifications to page 2, no longer saw an error.

Maniphest Tasks: T13623

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

+1 -1
+1 -1
src/applications/notification/query/PhabricatorNotificationQuery.php
··· 181 181 182 182 protected function newPagingMapFromPartialObject($object) { 183 183 return array( 184 - 'key' => $object->getChronologicalKey(), 184 + 'key' => $object['chronologicalKey'], 185 185 ); 186 186 } 187 187