Skip to content

Commit

Permalink
fix: count user email on server matric (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
irmannmal authored Nov 25, 2022
1 parent 530b0c1 commit ed435b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/metric.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export class MetricService {
this.postRepository.count({platform: PlatformType.MYRIAD}),
this.postRepository.count({platform: PlatformType.TWITTER}),
this.postRepository.count({platform: PlatformType.REDDIT}),
this.userRepository.count({email: {neq: undefined}}),
this.userRepository.count(<AnyObject>{email: {$neq: null}}),
this.walletRepository.count({networkId: 'near'}),
this.walletRepository.count({
networkId: {inq: ['myriad', 'kusama', 'polkadot']},
Expand Down

0 comments on commit ed435b6

Please sign in to comment.