From 1ba5f069478dccdb05d0eccddfd03a0075d1ba44 Mon Sep 17 00:00:00 2001
From: William Henry <whenry@gmail.com>
Date: Thu, 4 Aug 2016 09:44:19 -0400
Subject: [PATCH] FS-9403 #resolve [add timestamp for when user was pushed into
 queue that lives with the channel]

---
 src/mod/applications/mod_fifo/mod_fifo.c | 1 +
 1 file changed, 1 insertion(+)

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);