2
0
mirror of https://github.com/twitter/the-algorithm.git synced 2025-01-01 15:11:54 +01:00

[home-mixer] fix has_gte_10k_favs typo

Fixes , closes , closes , closes , closes , closes , closes , closes , closes , closes , closes , closes 
This commit is contained in:
twitter-team 2023-04-03 15:37:52 -07:00
parent ec83d01dca
commit d1cab28a10

View File

@ -160,7 +160,7 @@ object HomeTweetTypePredicates {
("has_gte_1k_favs", _.getOrElse(EarlybirdFeature, None).exists(_.favCountV2.exists(_ >= 1000))),
(
"has_gte_10k_favs",
_.getOrElse(EarlybirdFeature, None).exists(_.favCountV2.exists(_ >= 1000))),
_.getOrElse(EarlybirdFeature, None).exists(_.favCountV2.exists(_ >= 10000))),
(
"has_gte_100k_favs",
_.getOrElse(EarlybirdFeature, None).exists(_.favCountV2.exists(_ >= 100000))),