diff --git a/avUi/common-header-directive/common-header-directive.js b/avUi/common-header-directive/common-header-directive.js index 9fe2a0f4..b0f37f67 100644 --- a/avUi/common-header-directive/common-header-directive.js +++ b/avUi/common-header-directive/common-header-directive.js @@ -72,7 +72,7 @@ angular } if (scope.$parent.getSessionStartTime) { - scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(false); + scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(true); } scope.showCountdown = true; diff --git a/dist/appCommon-v10.4.2.js b/dist/appCommon-v10.4.2.js index acdb5aac..cbe36355 100644 --- a/dist/appCommon-v10.4.2.js +++ b/dist/appCommon-v10.4.2.js @@ -1207,7 +1207,7 @@ angular.module("avRegistration").config(function() {}), angular.module("avRegist } function updateTimedown() { scope.$parent.getSessionEndTime && (scope.logoutTimeMs = scope.$parent.getSessionEndTime()), - scope.$parent.getSessionStartTime && (scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(!1)), + scope.$parent.getSessionStartTime && (scope.countdownStartTimeMs = scope.$parent.getSessionStartTime(!0)), scope.showCountdown = !0; var now = Date.now(); scope.countdownSecs = Math.round((scope.logoutTimeMs - now) / 1e3), scope.countdownMins = Math.round((scope.logoutTimeMs - now) / 6e4),