summary refs log tree commit diff
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@protonmail.com>2023-12-23 17:11:14 -0500
committerRory& <root@rory.gay>2026-01-21 07:10:11 +0100
commit35a60646310fd6e4ff6689bba72edb5022922f6b (patch)
tree1f6e288d07c632e34cc6bd3ed2f7f77f0a0b3e41
parentsend disclosure for pomelo (diff)
downloadserver-ts-35a60646310fd6e4ff6689bba72edb5022922f6b.tar.xz
update pomelo experiment
-rw-r--r--src/api/routes/experiments.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/api/routes/experiments.ts b/src/api/routes/experiments.ts

index 015ac16e..eaa8070c 100644 --- a/src/api/routes/experiments.ts +++ b/src/api/routes/experiments.ts
@@ -23,7 +23,6 @@ import { Request, Response, Router } from "express"; const router = Router({ mergeParams: true }); router.get("/", route({}), (req: Request, res: Response) => { - // TODO: const { uniqueUsernames } = Config.get().general; const data: Experiments = { @@ -34,8 +33,7 @@ router.get("/", route({}), (req: Request, res: Response) => { // this enables the pomelo/unique usernames UI in the official clients if (uniqueUsernames) { // hash, revision, bucket, override, population, hash_result, as_mode - // bucket 4 is used by the official client, and enables live checking and suggestions, 3 is only live checking - data.assignments.push([2476969328, 0, 4, -1, 0, 9267, 0, 0]); + data.assignments.push([268309827, 0, 1, -1, 7, 8062, 0, 0]); } res.send(data); });