]> git.notmuchmail.org Git - notmuch/commitdiff
json: Replace `date_unix' with `timestamp' in show output
authorDavid Edmondson <dme@dme.org>
Fri, 16 Apr 2010 11:47:49 +0000 (12:47 +0100)
committerCarl Worth <cworth@cworth.org>
Thu, 22 Apr 2010 21:52:32 +0000 (14:52 -0700)
Search output was already using `timestamp' for a very similar field,
so follow that.

notmuch-show.c

index 76873a1d9036337868811659c99bb105ad371dfe..26449fa5bd0c2efde1d6f45460ee36cef60ce342 100644 (file)
@@ -145,7 +145,7 @@ format_message_json (const void *ctx, notmuch_message_t *message, unused (int in
     date = notmuch_message_get_date (message);
     relative_date = notmuch_time_relative_date (ctx, date);
 
-    printf ("\"id\": %s, \"match\": %s, \"filename\": %s, \"date_unix\": %ld, \"date_relative\": \"%s\", \"tags\": [",
+    printf ("\"id\": %s, \"match\": %s, \"filename\": %s, \"timestamp\": %ld, \"date_relative\": \"%s\", \"tags\": [",
            json_quote_str (ctx_quote, notmuch_message_get_message_id (message)),
            notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH) ? "true" : "false",
            json_quote_str (ctx_quote, notmuch_message_get_filename (message)),