mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
fix(posts): fix sort call on new (#171)
This commit is contained in:
parent
366bc17f97
commit
67a890cab3
2 changed files with 4 additions and 2 deletions
|
@ -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()))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue