Page MenuHomePhabricator

Fix some visibility issues with inline comments in Diffusion
ClosedPublic

Authored by epriestley on Mar 5 2016, 9:55 PM.
Tags
None
Referenced Files
F13186040: D15407.diff
Sat, May 11, 3:23 AM
Unknown Object (File)
Tue, May 7, 6:08 AM
Unknown Object (File)
Mon, May 6, 10:41 PM
Unknown Object (File)
Fri, May 3, 3:46 AM
Unknown Object (File)
Thu, May 2, 6:20 PM
Unknown Object (File)
Mon, Apr 29, 3:49 PM
Unknown Object (File)
Wed, Apr 24, 11:46 PM
Unknown Object (File)
Sun, Apr 21, 6:32 PM
Subscribers
None

Details

Summary

Fixes T10519. Two issues:

First, the acting user wasn't explicitly included in the mail. This usually didn't matter, but could matter if you unsubscribed and then interacted.

Second, we had some logic which tried to hide redundant "added inline comment" transactions, but could hide them inappropriately. In particular, if another action (like a subscribe) was present in the same group, we could hide the inlines because of that other transaction, then also hide the subscribe. This particular issue is likely an unintended consequence of hiding self-subscribes.

Instead of hiding inlines if anything else happened, hide them only if:

  • there is another "added a comment" transaction; or
  • there is another "added an inline comment" transaction.

This prevents the root issue in T10519 (incorrectly hiding every transaction, and thus not sending the mail) and should generally make behavior a little more consistent and future-proof.

Test Plan
  • Submitted only an inline comment on a commit I had not previously interacted with.
  • Before patch: no mail was generated (entire mail was improperly hidden).
  • After patch: got some mail with my comment.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Fix some visibility issues with inline comments in Diffusion.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added a reviewer: chad.
chad edited edge metadata.
This revision is now accepted and ready to land.Mar 5 2016, 10:08 PM
This revision was automatically updated to reflect the committed changes.