remove extra comment

This commit is contained in:
yggverse 2024-12-03 18:56:57 +02:00
parent 84c72ae3a3
commit 544851bbb7

View file

@ -78,9 +78,6 @@ impl Link {
// Timestamp // Timestamp
if let Some(date) = regex.get(2) { if let Some(date) = regex.get(2) {
// @TODO even possible, but simpler to work with `DateTime` API
// await for new features in `Date` as better in Gemini context
// https://docs.gtk.org/glib/struct.Date.html
timestamp = match DateTime::from_iso8601(&format!("{date}T00:00:00"), timezone) { timestamp = match DateTime::from_iso8601(&format!("{date}T00:00:00"), timezone) {
Ok(value) => Some(value), Ok(value) => Some(value),
Err(_) => None, Err(_) => None,