Built motion from commit 9ea097c.|0.0.143
authorAndrea Bianco <andrea.bianco@xcally.com>
Fri, 16 Sep 2016 14:28:16 +0000 (16:28 +0200)
committerAndrea Bianco <andrea.bianco@xcally.com>
Fri, 16 Sep 2016 14:28:16 +0000 (16:28 +0200)
release-notes/changelog_0.0.143.txt
server/config/ami/cleaner.js

index 614fe94..ddbec13 100644 (file)
@@ -1,5 +1,6 @@
 # xCALLY MOTION Changelog
 
+- * 9ea097c - 2016-09-16: Channels cleaner fix 
 - * 1ba79fa - 2016-09-16: Added cleaner for all channels 
 - * 82c5e19 - 2016-09-16: remove custom label from mail selection (scheduler) 
 - * b1ef54a - 2016-09-16: fix service mail account 
index bf240f6..63eaa4f 100644 (file)
@@ -130,6 +130,7 @@ function removeExpiredApplications(channel) {
         expiration = moment(session.updatedAt).add(session.timeslot, 'seconds');
         if (moment().isSameOrAfter(expiration)) {
           bulkFix.push(session.updateAttributes({
+            timeout: true,
             leaveAt: moment().format("YYYY-MM-DD HH:mm:ss")
           }));
         }