diff options
Diffstat (limited to 'server/models/account/account.ts')
-rw-r--r-- | server/models/account/account.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/account/account.ts b/server/models/account/account.ts index d8f305c37..54ec7cfcc 100644 --- a/server/models/account/account.ts +++ b/server/models/account/account.ts | |||
@@ -197,7 +197,7 @@ export class AccountModel extends Model<AccountModel> { | |||
197 | const query = { | 197 | const query = { |
198 | offset: start, | 198 | offset: start, |
199 | limit: count, | 199 | limit: count, |
200 | order: [ getSort(sort) ] | 200 | order: getSort(sort), |
201 | } | 201 | } |
202 | 202 | ||
203 | return AccountModel.findAndCountAll(query) | 203 | return AccountModel.findAndCountAll(query) |