mirror of
https://github.com/redlib-org/redlib.git
synced 2025-05-05 04:40:39 +00:00
Fix #378 — formatting of dates/times
This commit is contained in:
parent
0708fdfb37
commit
f1b3749cf0
4 changed files with 5 additions and 5 deletions
|
@ -94,7 +94,7 @@ async fn user(name: &str) -> Result<User, String> {
|
|||
title: esc!(about("title")),
|
||||
icon: format_url(&about("icon_img")),
|
||||
karma: res["data"]["total_karma"].as_i64().unwrap_or(0),
|
||||
created: created.format(format_description!("%b %d '%y")).unwrap_or_default(),
|
||||
created: created.format(format_description!("[month repr:short] [day] '[year repr:last_two]")).unwrap_or_default(),
|
||||
banner: esc!(about("banner_img")),
|
||||
description: about("public_description"),
|
||||
}
|
||||
|
|
|
@ -642,7 +642,7 @@ pub fn time(created: f64) -> (String, String) {
|
|||
|
||||
// If the time difference is more than a month, show full date
|
||||
let rel_time = if time_delta > Duration::days(30) {
|
||||
time.format(format_description!("%b %d '%y")).unwrap_or_default()
|
||||
time.format(format_description!("[month repr:short] [day] '[year repr:last_two]")).unwrap_or_default()
|
||||
// Otherwise, show relative date/time
|
||||
} else if time_delta.whole_days() > 0 {
|
||||
format!("{}d ago", time_delta.whole_days())
|
||||
|
@ -652,7 +652,7 @@ pub fn time(created: f64) -> (String, String) {
|
|||
format!("{}m ago", time_delta.whole_minutes())
|
||||
};
|
||||
|
||||
(rel_time, time.format(format_description!("%b %d %Y, %H:%M:%S UTC")).unwrap_or_default())
|
||||
(rel_time, time.format(format_description!("[month repr:short] [day] [year], [hour]:[minute]:[second] UTC")).unwrap_or_default())
|
||||
}
|
||||
|
||||
// val() function used to parse JSON from Reddit APIs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue