@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 an issue with FileMailReceiver not working well

Summary: Ref T7199. Guess no one has ever tried to reply to file mail.

Test Plan: Used `bin/mail receive-test` to send mail to files.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T7199

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

+1 -1
+1 -1
src/applications/files/mail/FileMailReceiver.php
··· 14 14 protected function loadObject($pattern, PhabricatorUser $viewer) { 15 15 $id = (int)trim($pattern, 'F'); 16 16 17 - return id(new PhabricatorPasteQuery()) 17 + return id(new PhabricatorFileQuery()) 18 18 ->setViewer($viewer) 19 19 ->withIDs(array($id)) 20 20 ->executeOne();