Files
termux-packages/packages/taskwarrior/0001-timestamp.patch32
2024-05-22 14:37:13 +00:00

12 lines
310 B
Plaintext

--- a/taskchampion/lib/src/atomic.rs
+++ b/taskchampion/lib/src/atomic.rs
@@ -22,7 +22,7 @@
unsafe fn from_ctype(self) -> Option<DateTime<Utc>> {
if self != 0 {
- return Some(utc_timestamp(self));
+ return Some(utc_timestamp(self.into()));
}
None
}