mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
reply: Convert JSON format to use sprinter
Almost all of reply was already being formatted using the sprinter. This patch converts the top-level dictionary to use the sprinter interface.
This commit is contained in:
parent
d41946ea78
commit
e0d97a639c
1 changed files with 4 additions and 4 deletions
|
@ -614,20 +614,20 @@ notmuch_reply_format_json(void *ctx,
|
|||
return 1;
|
||||
|
||||
sp = sprinter_json_create (ctx, stdout);
|
||||
sp->begin_map (sp);
|
||||
|
||||
/* The headers of the reply message we've created */
|
||||
printf ("{\"reply-headers\": ");
|
||||
sp->map_key (sp, "reply-headers");
|
||||
format_headers_json (sp, reply, TRUE);
|
||||
g_object_unref (G_OBJECT (reply));
|
||||
reply = NULL;
|
||||
|
||||
/* Start the original */
|
||||
printf (", \"original\": ");
|
||||
|
||||
sp->map_key (sp, "original");
|
||||
format_part_json (ctx, sp, node, TRUE, TRUE);
|
||||
|
||||
/* End */
|
||||
printf ("}\n");
|
||||
sp->end (sp);
|
||||
notmuch_message_destroy (message);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue