Page MenuHomePhabricator

[lib] Prevent useMessageInfoForPreview from fetching messages that get immediately pruned
ClosedPublic

Authored by ashoat on Feb 25 2025, 12:20 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Apr 5, 7:07 AM
Unknown Object (File)
Sat, Apr 5, 6:58 AM
Unknown Object (File)
Fri, Apr 4, 10:58 PM
Unknown Object (File)
Fri, Apr 4, 8:52 PM
Unknown Object (File)
Fri, Apr 4, 1:47 AM
Unknown Object (File)
Fri, Mar 14, 5:15 AM
Unknown Object (File)
Fri, Mar 14, 12:17 AM
Unknown Object (File)
Thu, Mar 13, 8:30 AM
Subscribers
None

Details

Summary

Copied from prior diff:

I observed an issue where the message fetch here ends up triggered MessageStorePruner. Normally, a message fetch can only happen when the viewer is looking at a thread, which results in lastNavigatedTo being bumped, which prevents MessageStorePruner from immediately triggering. But in the linked code the message fetch doesn't happen when the viewer is looking at a thread.

We could introduce a new action here to also bump lastNavigatedTo, but I don't think it's needed... if we can't get an acceptable MessagePreview within the first defaultNumberPerThread (unlikely), it's probably fine to just default to mostRecentMessageInfo, even though it's failing the showInMessagePreview check.

Note that we're only making these changes for thin threads. MessageStorePruner doesn't run for thick threads, and should already be fetching defaultNumberPerThread on app load for each thick thread.

Depends on D14400

Test Plan

I used this patch that adds a bunch of logs and ran a Release build of the iOS app pointed at production on my physical iOS device.

In combination with the prior diff, I confirmed that the logs of message prune actions were gone.

Diff Detail

Repository
rCOMM Comm
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

MessageStorePruner doesn't run for thick threads

This isn't correct. The pruner runs for thick threads, but it doesn't remove from the DB.
https://github.com/CommE2E/comm/blob/3206010f0102cb2c82d0872a9c84aade5643d59c/lib/reducers/message-reducer.js#L1397-L1400

lib/hooks/message-hooks.js
34

How about renaming it so that it doesn't look like a flag?

94–99

Given that the pruner runs for thick threads, should we also apply this modification to thick threads?

This revision is now accepted and ready to land.Feb 25 2025, 2:32 AM
lib/hooks/message-hooks.js
34

Good call – updated to numOlderMessagesToFetch

94–99

Thanks for this call-out / clarification

This revision was landed with ongoing or failed builds.Feb 25 2025, 9:23 AM
This revision was automatically updated to reflect the committed changes.