From 738a26f0170a3d34abcd3c824a6a25d2e6cb9a04 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 12 Sep 2025 11:55:27 -0400 Subject: [PATCH] MT#55283 fix redis metadata typo closes #2002 Change-Id: I8e656c3cef0169984e23a00522ce58edc457421a (cherry picked from commit e82c5da9186f7a36dc026999318f523110749d72) --- daemon/redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/redis.c b/daemon/redis.c index 6a90f3627..553488256 100644 --- a/daemon/redis.c +++ b/daemon/redis.c @@ -1500,7 +1500,7 @@ static int redis_tags(call_t *c, struct redis_list *tags, JsonReader *root_reade if (!redis_hash_get_str(&s, rh, "label")) call_str_cpy(c, &ml->label, &s); if (!redis_hash_get_str(&s, rh, "metadata")) - call_str_cpy(c, &c->metadata, &s); + call_str_cpy(c, &ml->metadata, &s); redis_hash_get_time_t(&ml->deleted, rh, "deleted"); if (!redis_hash_get_int(&ii, rh, "block_dtmf")) ml->block_dtmf = ii;