fix another JSON comma missing

fixes #1024

Change-Id: I859ecaae309335a1d8025a9e3a2ec3ca942a62f5
pull/1026/head
Richard Fuchs 6 years ago
parent 7cbea58090
commit f6874afbef

@ -233,8 +233,12 @@ void statistics_update_oneway(struct call* c) {
#define SM_PUSH(ret, m) \
do { \
struct stats_metric *last = NULL; \
if (ret->tail) \
last = ret->tail->data; \
for (GList *l_last = ret->tail; l_last; l_last = l_last->prev) { \
last = l_last->data; \
if (last->label) \
break; \
last = NULL; \
} \
if (!m->is_bracket && last) { \
if (!last->is_bracket || last->is_close_bracket) \
m->is_follow_up = 1; \

Loading…
Cancel
Save