fix(posts): fix sort call on new (#171)

This commit is contained in:
Matthew Esposito 2024-07-02 08:04:27 -04:00 committed by GitHub
parent 366bc17f97
commit 67a890cab3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -425,8 +425,6 @@ impl Post {
ws_url: val(post, "websocket_url"),
});
}
posts.sort_by(|a, b| b.created_ts.cmp(&a.created_ts));
posts.sort_by(|a, b| b.flags.stickied.cmp(&a.flags.stickied));
Ok((posts, res["data"]["after"].as_str().unwrap_or_default().to_string()))
}
}