pull/304/head
Chocobozzz 2018-02-19 11:31:50 +01:00
parent 35501c0fa7
commit 6ff9c676e9
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 3 additions and 3 deletions

View File

@ -197,7 +197,7 @@ export class AccountModel extends Model<AccountModel> {
const query = {
offset: start,
limit: count,
order: getSort(sort),
order: getSort(sort)
}
return AccountModel.findAndCountAll(query)

View File

@ -125,7 +125,7 @@ export class UserModel extends Model<UserModel> {
const query = {
offset: start,
limit: count,
order: getSort(sort),
order: getSort(sort)
}
return UserModel.findAndCountAll(query)

View File

@ -637,7 +637,7 @@ export class VideoModel extends Model<VideoModel> {
const query = {
offset: start,
limit: count,
order: getSort(sort),
order: getSort(sort)
}
const serverActor = await getServerActor()