From ed55612ca1c62d9bf11d7897504dcc93c4431b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Robles?= Date: Fri, 6 Sep 2024 10:25:16 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20Login=20error=20for=20voters=20(?= =?UTF-8?q?#412)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Parent issue: https://github.com/sequentech/meta/issues/1832 --- avUi/common-header-directive/common-header-directive.js | 2 +- dist/appCommon-v10.4.2.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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),