From dab5386207a8b2ba36b29f8539eef58f52974d31 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Thu, 4 Mar 2021 17:19:20 -0600 Subject: [PATCH] Update group limits error message --- ts/groups/limits.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/groups/limits.ts b/ts/groups/limits.ts index 9cce18fce00..18e7d6e3f67 100644 --- a/ts/groups/limits.ts +++ b/ts/groups/limits.ts @@ -10,7 +10,7 @@ function makeGetter(configKey: ConfigKeyType): (fallback?: number) => number { try { return parseIntOrThrow( getValue(configKey), - 'Failed to parse group size limit' + `Failed to parse ${configKey} as an integer` ); } catch (err) { if (isNumber(fallback)) {