diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-29 21:34:54 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-29 21:34:54 -0400 |
commit | 6f8a4d13a490eda7a195d14833c83810f7b5a789 (patch) | |
tree | c91e8993a21649a7501ebb97694f8c9040a0160f /src/tasks/stats/memberCount.ts | |
parent | 3c2b1b16a9afa2155a552d790fdb74f67cecaa33 (diff) | |
download | tanzanite-6f8a4d13a490eda7a195d14833c83810f7b5a789.tar.gz tanzanite-6f8a4d13a490eda7a195d14833c83810f7b5a789.tar.bz2 tanzanite-6f8a4d13a490eda7a195d14833c83810f7b5a789.zip |
fix memberCount error
Diffstat (limited to 'src/tasks/stats/memberCount.ts')
-rw-r--r-- | src/tasks/stats/memberCount.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tasks/stats/memberCount.ts b/src/tasks/stats/memberCount.ts index 7cafde5..2716e36 100644 --- a/src/tasks/stats/memberCount.ts +++ b/src/tasks/stats/memberCount.ts @@ -22,7 +22,7 @@ export default class MemberCountTask extends BotTask { .filter((r) => r.status === 'rejected') .forEach((r) => { assert(r.status === 'rejected'); - void this.client.console.error('memberCount', r.status); + void this.client.console.error('memberCount', r.reason); }); } } |