fix contact order on alias contact manager page

This commit is contained in:
Son NK 2020-06-07 12:10:33 +02:00
parent 7b2d86552b
commit 6cccb450b0
1 changed files with 1 additions and 1 deletions

View File

@ -805,7 +805,7 @@ class Alias(db.Model, ModelMixin):
def get_contacts(self, page=0):
contacts = (
Contact.filter_by(alias_id=self.id)
.order_by(Contact.created_at)
.order_by(Contact.created_at.desc())
.limit(PAGE_LIMIT)
.offset(page * PAGE_LIMIT)
.all()