From: William Henry Date: Thu, 4 Aug 2016 13:44:19 +0000 (-0400) Subject: FS-9403 #resolve [add timestamp for when user was pushed into queue that lives with... X-Git-Tag: v1.6.10~1^2~44^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ba5f069478dccdb05d0eccddfd03a0075d1ba44;p=thirdparty%2Ffreeswitch.git FS-9403 #resolve [add timestamp for when user was pushed into queue that lives with the channel] --- diff --git a/src/mod/applications/mod_fifo/mod_fifo.c b/src/mod/applications/mod_fifo/mod_fifo.c index cda0386eb6..0bb89ecd69 100644 --- a/src/mod/applications/mod_fifo/mod_fifo.c +++ b/src/mod/applications/mod_fifo/mod_fifo.c @@ -2756,6 +2756,7 @@ SWITCH_STANDARD_APP(fifo_function) switch_strftime_nocheck(date, &retsize, sizeof(date), "%Y-%m-%d %T", &tm); switch_channel_set_variable(channel, "fifo_status", "WAITING"); switch_channel_set_variable(channel, "fifo_timestamp", date); + switch_channel_set_variable(channel, "fifo_push_timestamp", date); switch_channel_set_variable(channel, "fifo_serviced_uuid", NULL); switch_channel_set_app_flag_key(FIFO_APP_KEY, channel, FIFO_APP_BRIDGE_TAG);