From 0e58226f3bc4aa4a3bd3ac6530c7ee7ab5cde8f2 Mon Sep 17 00:00:00 2001 From: mrossinek Date: Sun, 24 Feb 2019 18:33:51 +0100 Subject: [PATCH] Fix #1999 --- src/commands/CmdInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdInfo.cpp b/src/commands/CmdInfo.cpp index a65856f96..8d4633342 100644 --- a/src/commands/CmdInfo.cpp +++ b/src/commands/CmdInfo.cpp @@ -536,7 +536,7 @@ int CmdInfo::execute (std::string& output) Task before (undo[previous].substr (4)); Task after (undo[current].substr (4)); - journal.set (row, 1, taskInfoDifferences (before, after, dateformat, last_timestamp, timestamp.toEpoch())); + journal.set (row, 1, taskInfoDifferences (before, after, dateformat, last_timestamp, Datetime(after.get("modified")).toEpoch())); } } }