Files
termux-packages/packages/taskwarrior/0001-timestamp.patch32
termux-pacman-bot 7b45906d16 bump(main/taskwarrior): 3.1.0
Remove workaround with linkme crate in 0658b35d86ce6719d757ecdf6f7d090f2fdac2f1 commit.

In taskwarrior 3.1.0, Cargo.lock has linkme crate version 0.3.27 which
added Android support.
38cb074be7
2024-08-04 20:38:23 +00:00

12 lines
298 B
Plaintext

--- a/src/tc/lib/src/atomic.rs
+++ b/src/tc/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
}