From: Steffen Templin Date: Mon, 17 Oct 2016 07:34:04 +0000 (+0200) Subject: push-notification: Resolve indentation problem X-Git-Tag: 2.2.26~107 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78cd02d1c0d7af2f7983993ce4f4dba7f0a708aa;p=thirdparty%2Fdovecot%2Fcore.git push-notification: Resolve indentation problem --- diff --git a/src/plugins/push-notification/push-notification-driver-ox.c b/src/plugins/push-notification/push-notification-driver-ox.c index a995b68d44..71f3087129 100644 --- a/src/plugins/push-notification/push-notification-driver-ox.c +++ b/src/plugins/push-notification/push-notification-driver-ox.c @@ -390,19 +390,19 @@ static void push_notification_driver_ox_process_msg str_printfa(str, "\",\"imap-uidvalidity\":%u,\"imap-uid\":%u", msg->uid_validity, msg->uid); if (messagenew->from != NULL) { - str_append(str, ",\"from\":\""); - json_append_escaped(str, messagenew->from); + str_append(str, ",\"from\":\""); + json_append_escaped(str, messagenew->from); } if (messagenew->subject != NULL) { - str_append(str, "\",\"subject\":\""); - json_append_escaped(str, messagenew->subject); + str_append(str, "\",\"subject\":\""); + json_append_escaped(str, messagenew->subject); } if (messagenew->snippet != NULL) { - str_append(str, "\",\"snippet\":\""); - json_append_escaped(str, messagenew->snippet); + str_append(str, "\",\"snippet\":\""); + json_append_escaped(str, messagenew->snippet); } if (status_success) { - str_printfa(str, "\",\"unseen\":%u", box_status.unseen); + str_printfa(str, "\",\"unseen\":%u", box_status.unseen); } else { str_append(str, "\""); }