Index: apps/app_queue.c =================================================================== --- apps/app_queue.c (revision 282606) +++ apps/app_queue.c (working copy) @@ -1792,10 +1792,10 @@ } else tmp_name = v->name; - if (!ast_strlen_zero(v->value)) { - /* Don't want to try to set the option if the value is empty */ - queue_set_param(q, tmp_name, v->value, -1, 0); - } + /* NULL values don't get returned from realtime; blank values should + * still get set. If someone doesn't want a value to be set, they + * should set the realtime column to NULL, not blank. */ + queue_set_param(q, tmp_name, v->value, -1, 0); } /* Temporarily set realtime members dead so we can detect deleted ones.