diff --git a/ts/models/conversations.ts b/ts/models/conversations.ts index a87766888a..8e3121b68e 100644 --- a/ts/models/conversations.ts +++ b/ts/models/conversations.ts @@ -5472,7 +5472,7 @@ window.Whisper.ConversationCollection = window.Backbone.Collection.extend({ }, comparator(m: WhatIsThis) { - return -m.get('timestamp'); + return -(m.get('active_at') || 0); }, });