diff options
author | Vika <vika@fireburn.ru> | 2024-01-29 07:08:21 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-01-29 07:08:21 +0300 |
commit | d36014200549cf73a7f22c6f94fb15bec17823e8 (patch) | |
tree | 6e56f912219c5d20e2768b1f016f23fff22fe83e /src/micropub | |
parent | ed51d48f7353a5ceefa798ded52d3af465d4d0ec (diff) | |
download | kittybox-d36014200549cf73a7f22c6f94fb15bec17823e8.tar.zst |
lint: no extra whitespace on line endings
Diffstat (limited to 'src/micropub')
-rw-r--r-- | src/micropub/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/micropub/util.rs b/src/micropub/util.rs index 940d7c3..b6a045d 100644 --- a/src/micropub/util.rs +++ b/src/micropub/util.rs @@ -26,7 +26,7 @@ fn get_folder_from_type(post_type: &str) -> String { /// Reset the datetime to a proper datetime. /// Do not attempt to recover the information. -/// Do not pass GO. Do not collect $200. +/// Do not pass GO. Do not collect $200. fn reset_dt(post: &mut serde_json::Value) -> DateTime<FixedOffset> { let curtime: DateTime<Local> = Local::now(); post["properties"]["published"] = json!([curtime.to_rfc3339()]); |