Stop For You topic snooze from dropping untagged posts - #170
Open
Pitchfork-and-Torch wants to merge 1 commit into
Open
Stop For You topic snooze from dropping untagged posts#170Pitchfork-and-Torch wants to merge 1 commit into
Pitchfork-and-Torch wants to merge 1 commit into
Conversation
Pitchfork-and-Torch
force-pushed
the
cursor/topic-snooze-untagged-b364
branch
from
September 7, 2026 16:25
7325ae2 to
902a06f
Compare
TopicIdsFilter treated missing and empty topic hydration as an excluded-topic match, so snoozing any topic removed unlabeled lawful posts from For You. Keep the unlabeled safe harbor used by bulk Explore inclusion.
This was referenced Sep 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug
For You with snoozed topics (
excluded_topic_ids, surfacefor_you_with_snoozed_topics) runsTopicIdsFilterafterFilteredTopicsHydrator. The excluded branch keeps a post only whenfiltered_topic_idsis a non-empty list with no snoozed id.None(Strato miss) andSome([])(known untagged) both take_ => falseand are removed.Snoozing Sports (or any one topic) therefore deletes every lawful post that is not already tagged with some other surviving topic. Personal tweets, replies, and anything Strato did not label disappear. This is a successful filter result on the wrong set, not ranking weight.
This is not Explore topic hydration miss (bulk
topic_idsfail-closed onNone). That path is inclusion/exclusion of withheld Explore inventory. This path is For You snooze treating unlabeled speech as a positive exclude match.Proof
ScoredPostsQuery.excluded_topic_idson For You snoozeTopicIdsFilterexcluded partition (Phoenix pre-score)NoneandSome([])take_ => falseNone/ empty (_ => true)Fix
Keep missing and empty topic lists on the excluded branch. A snoozed topic still drops a post that actually carries that id (or an expanded child). Untagged posts stay.
Tests