Revert "fix(view): automatically refresh view only if a number is set."

This reverts commit 55dbae6bee.
This commit is contained in:
Hivert Quentin
2025-07-21 13:11:30 +02:00
parent b69ef6d7a5
commit b9f6b90740
5 changed files with 5 additions and 5 deletions
@@ -129,7 +129,7 @@
// Restart the refresh timer, if needed
var refreshViewCheck = Component.$Preferences.defaults.SOGoRefreshViewCheck;
if (refreshViewCheck && refreshViewCheck != 'manually' && !isNaN(refreshViewCheck)) {
if (refreshViewCheck && refreshViewCheck != 'manually') {
var f = angular.bind(Component.$rootScope, Component.$rootScope.$emit, 'calendars:list');
Component.$refreshTimeout = Component.$timeout(f, refreshViewCheck.timeInterval()*1000);
}