From 92b485c51b038ff8ea64fc49bc16dedf51ea8dcc Mon Sep 17 00:00:00 2001 From: Anna Date: Thu, 25 Aug 2022 19:12:49 -0400 Subject: [PATCH] fix(server): 1,000 not 10,000 --- server/src/web.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/web.rs b/server/src/web.rs index de66482..01331fd 100644 --- a/server/src/web.rs +++ b/server/src/web.rs @@ -406,7 +406,7 @@ fn stats_seven_days(state: Arc) -> BoxedFilter<(impl Reply, )> { fn contribute(state: Arc) -> BoxedFilter<(impl Reply, )> { async fn logic(state: Arc, listing: PartyFinderListing) -> std::result::Result { - if listing.created_world >= 10_000 || listing.home_world >= 10_000 || listing.current_world >= 10_000 { + if listing.created_world >= 1_000 || listing.home_world >= 1_000 || listing.current_world >= 1_000 { return Ok("invalid listing".to_string()); }